/* ============================================================
   MINUTO X MINUTO — post.css
   Blog post specific styles
   ============================================================ */

.post-header {
    position: relative;
    padding: 200px 0 100px;
    background: var(--color-black);
    overflow: hidden;
    border-bottom: var(--border-subtle);
}

.post-header__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
}

.post-header__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(0.3);
}

.post-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-black) 0%, transparent 100%);
    z-index: 1;
}

.post-header__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.post-header__category {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 24px;
    display: block;
}

.post-header__title {
    margin-bottom: 24px;
    line-height: 1;
}

.post-header__subtitle {
    font-family: var(--font-body);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 300;
    line-height: 1.4;
    color: var(--color-silver);
    margin-bottom: 40px;
}

.post-header__meta {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-grey-mid);
}

/* Body */
.post-body {
    padding: 100px 0;
    background: var(--color-black);
}

.post-body__content {
    max-width: 800px;
    margin: 0 auto;
}

.post-body__text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--color-silver);
}

.post-body__text p {
    margin-bottom: 40px;
}

.post-body__text strong {
    color: var(--color-white);
    font-weight: 500;
}

.post-body__text blockquote {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    padding-left: 40px;
    margin: 60px 0;
    border-left: 2px solid var(--color-white);
}

/* Related */
.post-related {
    padding: 100px 0;
    background: var(--color-black-soft);
    border-top: var(--border-subtle);
}

.post-related__title {
    margin-bottom: 60px;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .post-header {
        padding: 140px 0 60px;
    }
    
    .post-body {
        padding: 60px 0;
    }
    
    .post-body__text {
        font-size: 18px;
    }
}
