:root {
    --rt-bg: #f7f3ee;
    --rt-surface: #ffffff;
    --rt-surface-alt: #fcfaf7;
    --rt-text: #1f2933;
    --rt-text-soft: #6b7280;
    --rt-border: #e8dfd5;
    --rt-accent: #9a6f55;
    --rt-accent-strong: #7d5742;
    --rt-shadow: 0 20px 45px rgba(33, 24, 18, 0.06);
    --rt-radius-sm: 12px;
    --rt-radius-md: 20px;
    --rt-radius-lg: 32px;
    --rt-container: 1180px;
    --rt-content: 760px;
    --rt-sidebar: 320px;
    --rt-gap: 40px;
    --rt-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
    --rt-font-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
}

* ,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--rt-bg);
    color: var(--rt-text);
    font-family: var(--rt-font-sans);
    font-size: 18px;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration-color: rgba(154, 111, 85, 0.4);
    text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
    color: var(--rt-accent-strong);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

figure {
    margin: 0;
}

input,
textarea,
select,
button {
    font: inherit;
}

button,
input[type="submit"] {
    cursor: pointer;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 14px;
    background: var(--rt-surface);
    color: var(--rt-text);
    z-index: 100000;
}

.container {
    width: min(calc(100% - 32px), var(--rt-container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(247, 243, 238, 0.88);
    border-bottom: 1px solid rgba(232, 223, 213, 0.9);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 14px;
}

.custom-logo {
    max-height: 52px;
    width: auto;
}

.site-title {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-title a {
    text-decoration: none;
}

.site-description {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--rt-text-soft);
    line-height: 1.5;
}

.site-navigation ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    padding: 0;
    margin: 0;
}

.site-navigation a {
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--rt-text);
}

.hero-section {
    padding: 72px 0 28px;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
    gap: 28px;
    align-items: end;
}

.hero-copy,
.hero-card,
.section-card,
.post-card,
.widget,
.comment-respond,
.comments-area {
    background: var(--rt-surface);
    border: 1px solid var(--rt-border);
    box-shadow: var(--rt-shadow);
}

.hero-copy {
    padding: clamp(28px, 4vw, 56px);
    border-radius: var(--rt-radius-lg);
}

.eyebrow,
.section-kicker,
.hero-card-label,
.post-card-taxonomy,
.archive-header .page-title,
.archive-header .section-kicker {
    margin: 0 0 12px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rt-accent);
}

.hero-title,
.entry-title,
.archive-title,
.section-title,
.post-card-title {
    margin: 0;
    color: var(--rt-text);
    line-height: 1.08;
    font-family: var(--rt-font-serif);
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 5.3rem);
    max-width: 12ch;
}

.hero-text {
    max-width: 42rem;
    margin: 20px 0 0;
    font-size: 1.08rem;
    color: var(--rt-text-soft);
}

.hero-actions {
    margin-top: 26px;
}

.hero-card {
    padding: 24px;
    border-radius: var(--rt-radius-md);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.hero-card p {
    margin: 0;
    color: var(--rt-text-soft);
}

.button-primary,
.read-more-link,
input[type="submit"],
.comment-reply-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--rt-text);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.button-primary:hover,
.read-more-link:hover,
input[type="submit"]:hover,
.comment-reply-link:hover,
.button-primary:focus-visible,
.read-more-link:focus-visible,
input[type="submit"]:focus-visible,
.comment-reply-link:focus-visible {
    color: #fff;
    transform: translateY(-1px);
    opacity: 0.95;
}

.page-shell {
    padding: 24px 0 72px;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, var(--rt-sidebar));
    gap: var(--rt-gap);
    align-items: start;
}

.primary-column {
    min-width: 0;
}

.section-card,
.archive-header,
.not-found-card,
.single-article,
.comments-area {
    border-radius: var(--rt-radius-md);
    padding: clamp(24px, 3vw, 36px);
}

.section-intro {
    margin-bottom: 24px;
}

.section-title,
.archive-title,
.entry-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.posts-feed {
    display: grid;
    gap: 26px;
}

.post-card {
    overflow: hidden;
    border-radius: var(--rt-radius-lg);
}

.post-card-media {
    display: block;
    overflow: hidden;
    background: #efe8df;
}

.post-card-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.post-card:hover .post-card-media img,
.post-card:focus-within .post-card-media img {
    transform: scale(1.03);
}

.post-card-body {
    padding: clamp(22px, 3vw, 34px);
}

.post-card-taxonomy {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post-card-taxonomy a {
    text-decoration: none;
    color: var(--rt-accent);
}

.post-card-title {
    margin-top: 8px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.post-card-title a {
    text-decoration: none;
}

.post-card-meta,
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 16px;
    color: var(--rt-text-soft);
    font-size: 0.95rem;
}

.post-card-excerpt {
    margin-top: 14px;
    color: var(--rt-text-soft);
}

.post-card-excerpt p:last-child,
.widget p:last-child,
.entry-content > *:last-child {
    margin-bottom: 0;
}

.post-card-footer {
    margin-top: 24px;
}

.sidebar {
    display: grid;
    gap: 20px;
    position: sticky;
    top: 102px;
}

.widget {
    padding: 22px;
    border-radius: var(--rt-radius-md);
}

.widget-title {
    margin: 0 0 16px;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li + li {
    margin-top: 10px;
}

.widget select,
.widget input[type="search"],
.search-form input[type="search"],
.search-form input[type="text"],
input[type="email"],
input[type="text"],
input[type="url"],
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--rt-border);
    border-radius: 14px;
    background: var(--rt-surface-alt);
    color: var(--rt-text);
}

.search-form {
    display: grid;
    gap: 10px;
}

.entry-thumbnail {
    margin-top: 28px;
    border-radius: var(--rt-radius-md);
    overflow: hidden;
}

.entry-thumbnail img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.prose-content {
    max-width: var(--rt-content);
    font-size: 1.06rem;
}

.prose-content > * {
    margin-block: 1.1em;
}

.prose-content p,
.comment-content {
    color: var(--rt-text);
}

.prose-content h2,
.prose-content h3,
.prose-content h4,
.prose-content h5,
.prose-content h6 {
    margin-top: 1.8em;
    margin-bottom: 0.65em;
    line-height: 1.2;
    font-family: var(--rt-font-serif);
}

.prose-content blockquote {
    margin: 2em 0;
    padding: 1px 0 1px 24px;
    border-left: 3px solid var(--rt-accent);
    color: var(--rt-text-soft);
    font-style: italic;
}

.prose-content pre,
.prose-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.prose-content pre {
    overflow: auto;
    padding: 18px;
    border-radius: 16px;
    background: #1b1f23;
    color: #f8f9fb;
}

.prose-content :not(pre) > code {
    padding: 0.15em 0.4em;
    border-radius: 8px;
    background: #f1ece6;
}

.prose-content table {
    width: 100%;
    border-collapse: collapse;
}

.prose-content th,
.prose-content td {
    padding: 12px;
    border: 1px solid var(--rt-border);
    text-align: left;
}

.post-navigation,
.posts-navigation,
.navigation.pagination,
.comment-navigation {
    margin-top: 28px;
}

.post-navigation .nav-links,
.posts-navigation .nav-links,
.navigation.pagination .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.post-navigation a,
.posts-navigation a,
.page-numbers {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 20px;
    border: 1px solid var(--rt-border);
    border-radius: 999px;
    background: var(--rt-surface);
    text-decoration: none;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    flex: 1 1 280px;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    max-width: 100%;
}

.post-navigation .nav-next a {
    align-items: flex-end;
}

.nav-subtitle {
    display: block;
    font-size: 0.78rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rt-text-soft);
}

.nav-title {
    display: block;
    font-size: 1.2rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.page-numbers.current {
    background: var(--rt-text);
    color: #fff;
    border-color: var(--rt-text);
}

.comments-title,
.comment-reply-title {
    margin-top: 0;
    font-family: var(--rt-font-serif);
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list .children {
    list-style: none;
    margin: 18px 0 0 24px;
    padding: 0;
}

.comment-item + .comment-item {
    margin-top: 22px;
}

.comment-body {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
}

.comment-avatar img {
    border-radius: 50%;
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
}

.comment-author-name {
    font-weight: 700;
}

.comment-time,
.comment-actions,
.logged-in-as,
.comment-notes {
    color: var(--rt-text-soft);
    font-size: 0.95rem;
}

.comment-form {
    display: grid;
    gap: 16px;
}

.comment-form-cookies-consent {
    display: flex;
    gap: 10px;
    align-items: start;
}

.site-footer {
    padding: 16px 0 36px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.footer-column:empty {
    display: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    padding-top: 20px;
    color: var(--rt-text-soft);
    font-size: 0.95rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 14px;
    padding: 0;
    margin: 0;
}

.no-sidebar .content-grid,
.not-found-shell {
    grid-template-columns: minmax(0, 1fr);
}

.not-found-card {
    max-width: 760px;
    margin-inline: auto;
}

@media (max-width: 980px) {
    .header-inner,
    .hero-shell,
    .content-grid,
    .footer-widgets,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .site-navigation ul,
    .footer-nav ul {
        flex-wrap: wrap;
    }

    .sidebar {
        position: static;
        top: auto;
    }

    .footer-widgets {
        display: grid;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 17px;
    }

    .container {
        width: min(calc(100% - 20px), var(--rt-container));
    }

    .site-header {
        position: static;
    }

    .hero-section {
        padding-top: 28px;
    }

    .hero-copy,
    .hero-card,
    .section-card,
    .post-card-body,
    .widget,
    .comments-area {
        padding: 20px;
    }

    .post-card-title,
    .entry-title,
    .archive-title,
    .section-title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .comment-body {
        grid-template-columns: 1fr;
    }

    .comment-list .children {
        margin-left: 14px;
    }
}

.home-nav-glass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px);
    box-shadow: var(--rt-shadow);
}

.home-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-nav-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(145deg, #24384e, #0f766e);
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
}

.home-nav-brand strong,
.home-mini-card strong,
.home-stat-card strong {
    display: block;
}

.home-nav-brand strong {
    font-size: 1rem;
    font-family: var(--rt-font-sans);
}

.home-nav-brand span,
.section-copy,
.home-mini-card span,
.home-stat-card span,
.home-widget-card p,
.featured-story-copy p,
.home-quote-panel cite {
    color: var(--rt-text-soft);
    font-family: var(--rt-font-sans);
}

.home-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--rt-font-sans);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-section--modern {
    padding: 24px 0 12px;
    background:
        radial-gradient(circle at top left, rgba(154, 111, 85, 0.12), transparent 24%),
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.1), transparent 26%);
}

.home-hero-shell {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 28px;
    padding: clamp(28px, 4vw, 52px);
    border-radius: var(--rt-radius-lg);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
}

.home-hero-shell::before,
.home-hero-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.home-hero-shell::before {
    top: -110px;
    right: 18%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(154, 111, 85, 0.14), transparent 70%);
}

.home-hero-shell::after {
    right: -90px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.14), transparent 68%);
}

.hero-title--wide {
    max-width: 13ch;
}

.hero-text--dark {
    color: #334155;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--rt-border);
    background: rgba(255, 255, 255, 0.86);
    color: var(--rt-text);
    text-decoration: none;
    font-size: 0.96rem;
    font-weight: 600;
    font-family: var(--rt-font-sans);
}

.hero-actions--stackable {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero-side {
    display: grid;
    gap: 14px;
}

.home-spotlight-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(155deg, rgba(24, 33, 43, 0.96), rgba(35, 56, 79, 0.95));
    color: #ffffff;
    box-shadow: var(--rt-shadow);
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.88);
}

.home-spotlight-card h2 {
    margin: 0 0 12px;
    font-family: var(--rt-font-serif);
    font-size: clamp(1.6rem, 2.2vw, 2.05rem);
    line-height: 1.15;
}

.home-spotlight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.home-spotlight-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.home-spotlight-tags span,
.home-pill {
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    font-family: var(--rt-font-sans);
    text-decoration: none;
}

.home-spotlight-tags span {
    background: rgba(255, 255, 255, 0.12);
}

.home-mini-stats,
.home-stat-grid,
.posts-feed--grid {
    display: grid;
    gap: 18px;
}

.home-mini-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-mini-card,
.home-stat-card,
.home-widget-card,
.home-quote-panel,
.featured-story-card,
.featured-story-media,
.posts-feed--grid .post-card {
    border: 1px solid var(--rt-border);
    box-shadow: var(--rt-shadow);
}

.home-mini-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.76);
}

.home-mini-card strong {
    margin-bottom: 4px;
    color: var(--rt-accent-strong);
    font-size: 1.3rem;
    font-family: var(--rt-font-serif);
}

.home-main-shell {
    padding-bottom: 32px;
}

.home-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.section-intro-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.section-copy {
    max-width: 34rem;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.home-summary-cards,
.home-featured-story,
.home-widget-card,
.home-quote-panel {
    padding: 28px;
    border-radius: 24px;
}

.home-stat-grid,
.posts-feed--grid {
    margin-top: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-stat-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.home-stat-card strong {
    margin-bottom: 6px;
    color: #24384e;
    font-size: 1.5rem;
    font-family: var(--rt-font-serif);
}

.featured-story-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    margin-top: 22px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(252, 249, 244, 0.94));
}

.featured-story-media {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(24, 33, 43, 0.12), rgba(24, 33, 43, 0.22));
}

.featured-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-story-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 24px;
    color: #ffffff;
    font-family: var(--rt-font-sans);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(145deg, var(--rt-accent-strong), #24384e);
}

.featured-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-story-title {
    margin: 0;
    font-family: var(--rt-font-serif);
    font-size: clamp(2rem, 3vw, 2.7rem);
    line-height: 1.08;
}

.featured-story-title a {
    text-decoration: none;
}

.posts-feed--grid .post-card {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.posts-feed--grid .post-card-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.posts-feed--grid .post-card-body {
    padding: 22px;
}

.home-quote-panel {
    margin-top: 24px;
    background: linear-gradient(135deg, rgba(154, 111, 85, 0.12), rgba(15, 118, 110, 0.08));
}

.home-quote-panel blockquote {
    margin: 0;
    font-family: var(--rt-font-serif);
    font-size: clamp(1.3rem, 2.2vw, 1.65rem);
    line-height: 1.45;
}

.home-quote-panel cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.9rem;
}

.sidebar--home {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.sidebar .widget ul{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sidebar .widget ul li{
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.sidebar .widget ul li::before{
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rt-accent, #0f766e);
  font-weight: 700;
}

.home-widget-card {
    background: rgba(255, 255, 255, 0.78);
}

.home-pill-list,
.home-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-pill {
    background: var(--rt-surface);
    color: var(--rt-text);
}

.home-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
}

.home-link-list li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(31, 41, 51, 0.12);
}

.home-link-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .home-nav-glass,
    .home-hero-shell,
    .home-layout-grid,
    .section-intro-row,
    .featured-story-card {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .sidebar--home {
        position: static;
        top: auto;
    }
}

@media (max-width: 720px) {
    .home-nav-links {
        display: none;
    }

    .home-nav-glass,
    .home-summary-cards,
    .home-featured-story,
    .home-widget-card,
    .home-quote-panel,
    .featured-story-card,
    .home-hero-shell,
    .posts-feed--grid .post-card-body {
        padding: 20px;
    }

    .home-mini-stats,
    .home-stat-grid,
    .posts-feed--grid {
        grid-template-columns: 1fr;
    }

    .featured-story-media {
        min-height: 220px;
    }

    .hero-actions--stackable {
        flex-direction: column;
        align-items: stretch;
    }
}
