:root {
    --primary: #e00060;
    --primary-dark: #a80068;
    --accent: #ff7a1a;
    --ink: #3f1858;
    --text: #545e69;
    --muted: #7b8794;
    --surface: #ffffff;
    --surface-soft: #f5f7fa;
    --border: #dfe5eb;
    --navy: #3a075f;
    --navy-deep: #230038;
    --white: #ffffff;
    --shadow: 0 14px 38px rgba(58, 7, 95, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    direction: rtl;
    background: var(--surface);
    color: var(--text);
    font-family: Tahoma, "Segoe UI", Arial, sans-serif;
    line-height: 1.75;
    text-align: right;
    transition: background-color .25s ease, color .25s ease;
}

body.dark {
    --ink: #eff5fb;
    --text: #bdc8d5;
    --muted: #91a0b0;
    --surface: #170d20;
    --surface-soft: #23122f;
    --border: #3e2850;
    --navy: #2a0345;
    --navy-deep: #180027;
    --shadow: 0 14px 38px rgba(0, 0, 0, .28);
}

body,
button,
input {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input {
    font-size: 1rem;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.section {
    padding: 78px 0;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    top: 12px;
    right: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
}

.topbar {
    background: var(--navy-deep);
    color: #d7e1eb;
    font-size: .82rem;
}

.topbar__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar p {
    overflow: hidden;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.topbar p i {
    margin-left: 6px;
    color: var(--primary);
}

.topbar span {
    color: #8394a8;
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: color-mix(in srgb, var(--surface) 94%, transparent);
    box-shadow: 0 4px 18px rgba(18, 37, 62, .05);
    backdrop-filter: blur(14px);
}

.header-main {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand__logo-frame {
    position: relative;
    width: 170px;
    height: 72px;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.brand__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 145px;
    max-width: none;
    transform: translate(-50%, -50%);
}

.desktop-nav {
    display: flex;
    align-self: stretch;
    gap: 28px;
}

.desktop-nav a {
    position: relative;
    display: grid;
    place-items: center;
    color: var(--text);
    font-size: .93rem;
    font-weight: 700;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--primary);
    content: "";
    transition: width .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--primary);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.icon-button {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface-soft);
    color: var(--ink);
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.icon-button:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

.search-panel,
.mobile-panel {
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.search-form {
    position: relative;
    padding-block: 14px;
}

.search-form input {
    width: 100%;
    height: 47px;
    padding: 0 18px 0 52px;
    border: 1px solid var(--border);
    border-radius: 100px;
    outline: none;
    background: var(--surface-soft);
    color: var(--ink);
}

.search-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(224, 0, 96, .12);
}

.search-form button {
    position: absolute;
    top: 50%;
    left: 37px;
    border: 0;
    background: transparent;
    color: var(--primary);
    transform: translateY(-50%);
}

.mobile-panel nav {
    display: grid;
    padding: 12px 20px 22px;
}

.mobile-panel a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink);
    font-weight: 700;
}

.hero {
    background: var(--navy);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-card {
    position: relative;
    min-height: 580px;
    overflow: hidden;
    background: var(--navy);
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.hero-card:hover img {
    transform: scale(1.05);
}

.hero-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 14, 26, .94) 3%, rgba(5, 14, 26, .08) 75%);
}

.hero-card__content {
    position: absolute;
    right: 8%;
    bottom: 8%;
    left: 8%;
    z-index: 1;
    color: var(--white);
}

.hero-card h1,
.hero-card h2 {
    max-width: 660px;
    margin: 12px 0 18px;
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    line-height: 1.45;
}

.hero-card h2 {
    font-size: clamp(1.75rem, 2.6vw, 2.3rem);
}

.tag {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 6px;
    background: var(--primary);
    color: var(--white);
    font-size: .76rem;
    font-weight: 800;
    line-height: 1.4;
}

.tag--outline {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--primary);
}

.tag--small {
    padding: 3px 8px;
    font-size: .68rem;
}

.meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 17px;
    color: var(--muted);
    font-size: .78rem;
}

.meta i {
    margin-left: 4px;
    color: var(--primary);
}

.meta--light {
    color: #c7d2de;
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading--center {
    text-align: center;
}

.section-heading--center p {
    margin: 7px 0 0;
    color: var(--muted);
}

.section-heading--line,
.section-heading--dark {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.section-heading--dark {
    border-color: #2a3d54;
}

.eyebrow {
    color: var(--primary);
    font-size: .8rem;
    font-weight: 900;
}

.section-heading h2,
.follow-card h2,
.newsletter h2 {
    margin: 4px 0 0;
    color: var(--ink);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    line-height: 1.35;
}

.text-link,
.read-more {
    color: var(--ink);
    font-size: .86rem;
    font-weight: 800;
}

.text-link i,
.read-more i {
    margin-right: 5px;
    transition: transform .2s ease;
}

.text-link:hover,
.read-more:hover {
    color: var(--primary);
}

.text-link:hover i,
.read-more:hover i {
    transform: translateX(-4px);
}

.categories {
    background: var(--surface);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.category-card {
    position: relative;
    height: 190px;
    overflow: hidden;
    border-radius: 70px;
    box-shadow: var(--shadow);
}

.category-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 18, 32, .9), rgba(7, 18, 32, .08));
    content: "";
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.category-card:hover img {
    transform: scale(1.09);
}

.category-card span {
    position: absolute;
    right: 12px;
    bottom: 22px;
    left: 12px;
    z-index: 1;
    color: var(--white);
    font-size: .88rem;
    font-weight: 800;
    text-align: center;
}

.spotlight {
    background: var(--surface-soft);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .9fr) minmax(250px, .7fr);
    gap: 28px;
}

.story-image {
    display: block;
    height: 320px;
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: 17px;
}

.story-image img,
.compact-story > a img,
.overlay-card img,
.video-image img,
.weekly-card > a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.feature-story:hover .story-image img,
.compact-story:hover img,
.overlay-card:hover img,
.video-feature:hover img,
.video-row:hover img,
.weekly-card:hover > a img {
    transform: scale(1.06);
}

.feature-story h3 {
    margin: 10px 0 14px;
    color: var(--ink);
    font-size: 1.65rem;
    line-height: 1.55;
}

.compact-list {
    display: grid;
    align-content: start;
    gap: 20px;
}

.compact-story {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.compact-story:last-child {
    padding-bottom: 0;
    border: 0;
}

.compact-story > a {
    height: 120px;
    overflow: hidden;
    border-radius: 12px;
}

.compact-story h3 {
    margin: 7px 0 10px;
    color: var(--ink);
    font-size: .98rem;
    line-height: 1.65;
}

.follow-card {
    align-self: start;
    padding: 30px;
    border-radius: 18px;
    background: var(--navy);
    box-shadow: var(--shadow);
    color: #c3cfdb;
}

.follow-card h2 {
    color: var(--white);
    font-size: 1.45rem;
}

.follow-card p {
    margin: 12px 0 22px;
    font-size: .88rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.social-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid #2d435d;
    border-radius: 9px;
    color: #dce5ee;
    font-size: .75rem;
}

.social-grid a:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.popular {
    background: var(--surface);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.overlay-card {
    position: relative;
    grid-column: span 2;
    min-height: 310px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--navy);
}

.overlay-card--wide {
    grid-column: span 3;
    min-height: 360px;
}

.overlay-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 14, 26, .95), rgba(5, 14, 26, .08));
    content: "";
}

.overlay-card__content {
    position: absolute;
    right: 24px;
    bottom: 23px;
    left: 24px;
    z-index: 1;
    color: var(--white);
}

.overlay-card h3 {
    margin: 9px 0 13px;
    font-size: 1.2rem;
    line-height: 1.55;
}

.overlay-card--wide h3 {
    font-size: 1.45rem;
}

.videos {
    background: var(--navy-deep) url("../img/bg/video_post_bg.jpg") center/cover;
}

.section-heading--dark h2 {
    color: var(--white);
}

.text-link--light {
    color: var(--white);
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
}

.video-image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.video-feature .video-image {
    height: 380px;
    margin-bottom: 18px;
}

.video-image::after {
    position: absolute;
    inset: 0;
    background: rgba(4, 12, 23, .35);
    content: "";
}

.play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    color: var(--white);
    transform: translate(-50%, -50%);
    transition: background .2s ease, transform .2s ease;
}

.video-image:hover .play {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.08);
}

.play--small {
    width: 45px;
    height: 45px;
    font-size: .8rem;
}

.video-feature h3 {
    margin: 10px 0 14px;
    color: var(--white);
    font-size: 1.65rem;
    line-height: 1.55;
}

.video-list {
    display: grid;
    align-content: start;
    gap: 20px;
    padding-right: 38px;
    border-right: 1px solid #2a3d54;
}

.video-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 20px;
}

.video-row .video-image {
    height: 145px;
}

.video-row h3 {
    margin: 8px 0 12px;
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.6;
}

.weekly {
    background: var(--surface-soft);
}

.weekly-grid {
    display: grid;
    gap: 22px;
}

.weekly-card {
    display: grid;
    grid-template-columns: minmax(280px, 39%) 1fr;
    gap: 30px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--surface);
    box-shadow: 0 7px 24px rgba(18, 37, 62, .05);
}

.weekly-card > a {
    height: 255px;
    overflow: hidden;
    border-radius: 12px;
}

.weekly-card > div {
    align-self: center;
}

.weekly-card h3 {
    margin: 10px 0 12px;
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1.55;
}

.weekly-card p {
    margin: 14px 0;
    font-size: .9rem;
}

.newsletter {
    padding: 70px 0;
    background: var(--surface);
}

.newsletter__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 45px;
    padding: 40px 46px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 8% 120%, rgba(255, 122, 26, .32), transparent 34%),
        var(--navy);
    box-shadow: var(--shadow);
}

.newsletter h2 {
    color: var(--white);
}

.newsletter p {
    margin: 8px 0 0;
    color: #aebdcd;
}

.subscribe-form {
    display: grid;
    grid-template-columns: 1fr 1.3fr auto;
    gap: 9px;
}

.subscribe-form input {
    min-width: 0;
    height: 48px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 9px;
    outline: none;
    background: rgba(255, 255, 255, .09);
    color: var(--white);
}

.subscribe-form input:focus {
    border-color: var(--primary);
}

.subscribe-form input::placeholder {
    color: #9babbc;
}

.subscribe-form button {
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}

.subscribe-form button:disabled {
    opacity: .8;
    cursor: default;
}

.site-footer {
    padding-top: 62px;
    background: var(--navy-deep);
    color: #aebaca;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
    padding-bottom: 45px;
}

.brand--footer .brand__logo-frame {
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}

.footer-about p {
    max-width: 380px;
    margin: 18px 0 0;
    font-size: .88rem;
}

.footer-grid h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 1rem;
}

.footer-grid > div > a:not(.brand) {
    display: block;
    width: fit-content;
    margin: 8px 0;
    font-size: .86rem;
}

.footer-grid a:hover,
.footer-bottom a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 9px;
}

.footer-social a {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border: 1px solid #2c3f56;
    border-radius: 50%;
    color: #dce5ee;
}

.footer-social a:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.footer-bottom {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #213247;
    font-size: .8rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(224, 0, 96, .3);
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
}

.archive-header {
    padding-bottom: 42px;
    text-align: center;
    background:
        radial-gradient(circle at 12% 110%, rgba(255, 122, 26, .18), transparent 30%),
        color-mix(in srgb, var(--primary) 7%, var(--surface));
}

.archive-header h1 {
    margin: 10px 0;
    color: var(--ink);
    font-size: clamp(2rem, 5vw, 3.6rem);
}

.archive-header p {
    max-width: 680px;
    margin: 0 auto;
}

.archive-search {
    max-width: 680px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: 28px auto 0;
}

.archive-search input {
    min-width: 0;
    height: 50px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    background: var(--surface);
    color: var(--ink);
}

.archive-search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(224, 0, 96, .12);
}

.archive-search button {
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
}

.archive-results {
    padding-top: 60px;
}

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

.archive-grid .weekly-card {
    grid-template-columns: 190px minmax(0, 1fr);
}

.archive-grid .weekly-card h2 {
    margin: 8px 0;
    color: var(--ink);
    font-size: 1.12rem;
    line-height: 1.55;
}

.empty-state {
    padding: 70px 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    text-align: center;
}

.empty-state > i {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 2.4rem;
}

.empty-state h1,
.empty-state h2 {
    margin: 0 0 10px;
    color: var(--ink);
}

.form-status {
    grid-column: 1 / -1;
    min-height: 1.5em;
    margin: 4px 0 0;
    color: #f4d7e6;
    font-size: .82rem;
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 18px;
    }

    .desktop-nav a {
        font-size: .84rem;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-card {
        height: 210px;
    }

    .spotlight-grid {
        grid-template-columns: 1.15fr .85fr;
    }

    .follow-card {
        grid-column: 1 / -1;
    }

    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .newsletter__inner {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }

    .footer-grid > div:last-child {
        grid-column: 2;
    }
}

@media (max-width: 840px) {
    .topbar__inner > span {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 500px;
    }

    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .overlay-card,
    .overlay-card--wide {
        grid-column: span 1;
        min-height: 340px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .video-list {
        padding: 28px 0 0;
        border-top: 1px solid #2a3d54;
        border-right: 0;
    }

    .weekly-card {
        grid-template-columns: 300px 1fr;
    }

    .subscribe-form {
        grid-template-columns: 1fr 1fr;
    }

    .subscribe-form button {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 26px, 1180px);
    }

    .section {
        padding: 56px 0;
    }

    .topbar {
        font-size: .75rem;
    }

    .header-main {
        min-height: 67px;
    }

    .brand__logo-frame {
        width: 148px;
        height: 62px;
    }

    .brand__logo {
        width: 125px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .archive-grid .weekly-card {
        grid-template-columns: 1fr;
    }

    .archive-search {
        grid-template-columns: 1fr;
    }

    .archive-search button {
        min-height: 48px;
    }

    .icon-button {
        width: 38px;
        height: 38px;
    }

    .search-toggle {
        display: none;
    }

    .hero-card {
        min-height: 440px;
    }

    .hero-card__content {
        right: 22px;
        bottom: 28px;
        left: 22px;
    }

    .hero-card h1,
    .hero-card h2 {
        font-size: 1.55rem;
    }

    .meta {
        gap: 6px 12px;
    }

    .section-heading--line,
    .section-heading--dark {
        align-items: flex-start;
        flex-direction: column;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .category-card {
        height: 190px;
    }

    .spotlight-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 270px;
    }

    .feature-story h3 {
        font-size: 1.35rem;
    }

    .compact-story {
        grid-template-columns: 120px 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-grid {
        grid-template-columns: 1fr;
    }

    .overlay-card,
    .overlay-card--wide {
        min-height: 330px;
    }

    .video-feature .video-image {
        height: 300px;
    }

    .video-row {
        grid-template-columns: 130px 1fr;
        gap: 14px;
    }

    .video-row .video-image {
        height: 120px;
    }

    .video-row h3 {
        font-size: .92rem;
    }

    .weekly-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .weekly-card > a {
        height: 230px;
    }

    .weekly-card h3 {
        font-size: 1.15rem;
    }

    .newsletter {
        padding: 45px 0;
    }

    .newsletter__inner {
        padding: 30px 21px;
        border-radius: 17px;
    }

    .subscribe-form {
        grid-template-columns: 1fr;
    }

    .subscribe-form button {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 20px;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
