/* ===== Blog Single / Detail Page ===== */
.blog-detail {
    padding: 0 0 80px;
    font-family: 'Raleway', sans-serif;
    color: var(--body-color, #222222);
}

.blog-detail .container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---- Full-width hero with title at bottom-left ---- */
.blog-detail__hero {
    position: relative;
    width: 100%;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

.blog-detail__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.05) 80%);
}

.blog-detail__hero .container-fluid {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 60px;
}

.blog-detail__hero-content {
    padding: 0 0 50px;
    max-width: 900px;
    text-align: left;
}

/* Meta row (date + author) */
.blog-detail__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 16px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.blog-detail__date {
    color: var(--golden-color, #e1b96a);
    font-weight: 700;
    position: relative;
    padding-right: 18px;
}

.blog-detail__date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, 0.4);
}

.blog-detail__author, .blog-detail__author a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Title (on hero, bottom-left) */
.blog-detail__title {
    font-size: 2.5rem;
    line-height: 1.22;
    font-weight: 600;
    margin: 0;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}

/* Article body typography */
.blog-detail__body {
    font-size: 1.06rem;
    line-height: 1.9;
    font-weight: 400;
    color: #333;
}

.blog-detail__body p {
    margin: 0 0 22px;
}

.blog-detail__body h2 {
    font-size: 1.5rem;
    line-height: 1.35;
    font-weight: 600;
    margin: 42px 0 16px;
    color: var(--body-color, #222222);
    position: relative;
    padding-bottom: 12px;
}

.blog-detail__body h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    background: var(--golden-color, #e1b96a);
    border-radius: 3px;
}

.blog-detail__body h3 {
    font-size: 1.12rem;
    font-weight: 700;
    margin: 28px 0 8px;
    color: var(--body-color, #222222);
}

/* Pull-quote / highlight line */
.blog-detail__body blockquote {
    margin: 30px 0;
    padding: 22px 28px;
    border-left: 4px solid var(--golden-color, #e1b96a);
    background: #faf6ee;
    border-radius: 0 10px 10px 0;
    font-size: 1.18rem;
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
    color: var(--body-color, #222222);
}

.blog-detail__body blockquote p {
    margin: 0;
}

/* Back link */
.blog-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 44px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--golden-color, #e1b96a);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-detail__back:hover {
    gap: 14px;
    color: var(--body-color, #222222);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-detail {
        padding: 0 0 55px;
    }

    .blog-detail__hero {
        min-height: 380px;
        margin-bottom: 35px;
    }

    .blog-detail__hero .container-fluid {
        padding: 0 20px;
    }

    .blog-detail__hero-content {
        padding: 0 0 32px;
    }

    .blog-detail__title {
        font-size: 1.7rem;
    }

    .blog-detail__body {
        font-size: 1rem;
        line-height: 1.8;
    }

    .blog-detail__body h2 {
        font-size: 1.3rem;
        margin-top: 34px;
    }

    .blog-detail__body blockquote {
        padding: 18px 20px;
        font-size: 1.05rem;
    }
    article.blog-detail {
    -moz-text-align-last: left;
    text-align-last: left;
    text-align: start;
}
}
