.materia-page {
    width: 100%;
    color: #f4f4ee;
}

.materia-page section {
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.materia-page section p {
    text-align: left;
}

.materia-hero {
    max-width: 940px;
    margin: 10px auto 70px;
}

.eyebrow,
.section-kicker {
    color: #f0e99a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 18px;
}

.materia-hero h2 {
    max-width: 850px;
    margin: 0;
    border: 0;
    padding: 0;
    color: #ffffcc;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.materia-hero .intro {
    max-width: 690px;
    margin-top: 28px;
    color: #b9b9b0;
    font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 24px;
    border-bottom: 1px solid #383838;
    padding-bottom: 18px;
}

.section-kicker {
    margin-bottom: 4px;
    font-size: 0.68rem;
}

.section-heading h3 {
    margin: 0;
    color: #f4f4ee;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1;
}

.section-note {
    max-width: 310px;
    margin: 0;
    color: #b9b9b0;
    font-size: 0.9rem;
    text-align: right !important;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.materia-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid #383838;
    border-radius: 2px;
    background: linear-gradient(145deg, #262626 0%, #171717 72%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.materia-card:hover,
.materia-card:focus-visible {
    border-color: #ffffcc;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 204, 0.15);
    outline: none;
    transform: translateY(-4px);
}

.card-media {
    position: relative;
    aspect-ratio: 16 / 8.3;
    overflow: hidden;
    background: #080808;
    border-bottom: 1px solid #383838;
}

.card-media::after {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
    content: '';
    pointer-events: none;
}

.card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
    transition: transform 220ms ease, filter 220ms ease;
}

.materia-card:hover .card-media img,
.materia-card:focus-visible .card-media img {
    filter: saturate(1) contrast(1.08);
    transform: scale(1.04);
}

.card-media-blog {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 204, 0.09) 25%, transparent 25%) 0 0 / 26px 26px,
        linear-gradient(315deg, rgba(255, 255, 204, 0.06) 25%, transparent 25%) 0 0 / 26px 26px,
        #111;
}

.blog-mark {
    position: relative;
    z-index: 1;
    color: #ffffcc;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2.4rem, 6vw, 4.7rem);
    font-weight: 700;
    letter-spacing: -0.08em;
}

.media-tag {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 12px;
    padding: 4px 8px;
    border: 1px solid rgba(255, 255, 204, 0.65);
    background: rgba(0, 0, 0, 0.72);
    color: #ffffcc;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 23px 24px;
}

.card-source {
    margin: 0 0 8px !important;
    color: #f0e99a;
    font-size: 0.72rem !important;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.card-body h4 {
    margin: 0;
    color: #f4f4ee;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.05;
}

.card-body p:not(.card-source) {
    margin-top: 13px;
    color: #b9b9b0;
    font-size: 0.94rem;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: auto;
    padding-top: 22px;
    color: #ffffcc;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-action span {
    font-size: 1rem;
    line-height: 1;
}

.closing-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 70px !important;
    border-top: 1px solid #383838;
    padding: 25px 0 35px !important;
    color: #b9b9b0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
}

.closing-mark {
    flex: 0 0 auto;
    color: #ffffcc;
    font-size: 1.9rem;
}

.closing-note p {
    margin: 0;
}

@media (max-width: 840px) {
    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .section-note {
        max-width: none;
        text-align: left !important;
    }
}

@media (max-width: 640px) {
    .materia-hero {
        margin-top: 0;
        margin-bottom: 52px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .card-media {
        aspect-ratio: 16 / 9;
    }

    .closing-note {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
