/* =========================================================
           GLOBAL
        ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #172f57;
    background: #e7ebf1;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font-family: inherit;
}

img {
    max-width: 100%;
}


/* =========================================================
           TOP BAR
        ========================================================= */

.top-bar {
    height: 44px;
    background: #061b3c;
    color: #d9e2ef;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;
    font-size: 13px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 9px;
    letter-spacing: 0.2px;
}

.gold-dot {
    width: 7px;
    height: 7px;
    background: #e0a52d;
    border-radius: 50%;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-right a {
    transition: 0.25s;
}

.top-right a:hover {
    color: #e2ab32;
}


/* =========================================================
           NAVIGATION
        ========================================================= */

.navbar {
    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    border-bottom: 1px solid #e6ebf2;

    position: relative;
    z-index: 20;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 260px;
    height: auto;
    margin: 12px 0;
    display: block;
}

.nav-menu {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 30px;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    position: relative;

    color: #233b60;

    font-size: 14px;
    font-weight: 600;

    padding: 38px 0;

    transition: 0.25s;
}

.nav-menu a:hover {
    color: #d49b20;
}

.nav-menu .active {
    color: #d49b20;
}

.nav-menu .active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 25px;

    height: 3px;

    background: #dfa52d;

    border-radius: 5px;
}

.submit-btn {
    background: #dfa52d;

    color: #071d42 !important;

    padding: 15px 22px !important;

    border-radius: 5px;

    font-size: 13px !important;
    font-weight: 700 !important;

    transition: 0.25s;
}

.submit-btn:hover {
    background: #c88e17;

    color: #ffffff !important;
}

.submit-btn::after {
    display: none !important;
}

.header-info {
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    padding: 0 40px;

    border-bottom: 1px solid #e8edf3;

    background: #ffffff;

    color: #53657d;

    font-size: 11px;
    font-weight: 500;

    white-space: nowrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #53657d;
    text-decoration: none;

    padding: 0 22px;

    border-right: 1px solid #d9e0e8;
}

/* Remove border from last item */
.info-item:last-child {
    border-right: none;
}

.info-item svg {
    width: 15px;
    height: 15px;

    color: #0b315f;
}

.info-item:hover {
    color: #d99a20;
}

.info-item:hover svg {
    color: #d99a20;
}


/* =========================================================
           HERO
        ========================================================= */

.hero {
    position: relative;

    min-height: 510px;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(circle at 82% 25%,
            rgba(65, 123, 184, 0.40),
            transparent 34%),
        radial-gradient(circle at 20% 90%,
            rgba(26, 79, 130, 0.35),
            transparent 30%),
        linear-gradient(120deg,
            #061d45 0%,
            #0b2d5b 48%,
            #164778 100%);
}

/* Decorative circles */

.hero::before {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.06);

    right: -210px;
    top: -350px;
}

.hero::after {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.05);

    left: -270px;
    bottom: -330px;
}

.hero-content {
    max-width: 1200px;

    margin: auto;

    padding: 75px 25px 85px;

    position: relative;
    z-index: 2;

    text-align: center;
}

.hero-small {
    color: #e3ae37;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 22px;
}

.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(48px, 6vw, 76px);

    font-weight: 600;

    line-height: 1.12;

    margin-bottom: 22px;

    letter-spacing: -1px;
}

.hero h1 span {
    color: #e5ad32;
}

.hero-description {
    max-width: 760px;

    margin: auto;

    color: #d7e2f1;

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
           SEARCH
        ========================================================= */

.search-area {
    max-width: 980px;

    margin: 42px auto 0;
}

.search-tabs {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 15px;
}

.search-tab {
    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(255, 255, 255, 0.08);

    color: #dce7f5;

    padding: 9px 19px;

    border-radius: 30px;

    font-size: 13px;

    cursor: pointer;

    transition: 0.25s;
}

.search-tab:hover {
    background: rgba(255, 255, 255, 0.16);
}

.search-tab.active {
    background: #ffffff;

    color: #12335d;

    border-color: #ffffff;
}

.search-box {
    min-height: 72px;

    background: #ffffff;

    border-radius: 40px;

    padding: 8px;

    display: flex;
    align-items: center;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.20);
}

.search-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #7d899a;

    flex-shrink: 0;
}

.search-icon svg {
    width: 23px;
    height: 23px;
}

.search-box input {
    flex: 1;

    height: 56px;

    border: none;
    outline: none;

    background: transparent;

    font-size: 16px;

    color: #263d60;
}

.search-box input::placeholder {
    color: #9aa6b6;
}

.search-btn {
    width: 56px;
    height: 56px;

    border: none;

    border-radius: 40px;

    background: #dfa52d;

    color: #081e40;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: 0.25s;
}

.search-btn svg {
    width: 23px;
    height: 23px;
}

.search-btn:hover {
    background: #c99118;

    color: #ffffff;
}


/* =========================================================
           MAIN
        ========================================================= */

.main-content {
    margin: 135px 25px;
}

.publication-process {
    padding: 100px 6%;
    margin-bottom: 90px;
    background: #ffffff;
    overflow: hidden;
}

.process-heading {
    max-width: 760px;
    margin: 0 auto 72px;
    text-align: center;
}

.process-eyebrow {
    display: block;
    margin-bottom: 17px;
    color: #c98912;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-heading h2 {
    margin: 0;
    color: #0b2854;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;
}

.process-heading h2 em {
    color: #c98912;
    font-style: normal;
}

.process-heading p {
    max-width: 680px;
    margin: 22px auto 0;
    color: #60718c;
    font-size: 15px;
    line-height: 1.7;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1360px;
    margin: 0 auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 68px;
    right: 9%;
    left: 9%;
    height: 1px;
    background: #dbe3ed;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    display: block;
    margin-bottom: 17px;
    color: #c98912;
    font-size: 11px;
    font-weight: 800;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    color: #092957;
    background: #ffffff;
    border: 1px solid #dbe3ed;
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(11, 40, 84, 0.08);
    transition: 0.25s ease;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
}

.process-step:hover .step-icon {
    color: #ffffff;
    background: #0b2854;
    border-color: #0b2854;
    transform: translateY(-5px);
}

.process-step h3 {
    margin: 0 0 10px;
    color: #0b2854;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-weight: 600;
}

.process-step p {
    max-width: 205px;
    margin: 0 auto;
    color: #60718c;
    font-size: 13px;
    line-height: 1.6;
}

.process-action {
    margin-top: 46px;
    text-align: center;
}

.process-action a {
    display: inline-block;
    padding-bottom: 5px;
    color: #b87806;
    border-bottom: 1px solid #b87806;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.process-action a:hover {
    color: #0b2854;
    border-color: #0b2854;
}

@media (max-width: 1000px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 48px;
    }

    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 650px) {
    .publication-process {
        padding: 72px 22px;
        margin-bottom: 60px;
    }

    .process-heading {
        margin-bottom: 50px;
    }

    .process-heading h2 {
        font-size: 34px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .step-number {
        margin-bottom: 10px;
    }

    .step-icon {
        margin-bottom: 15px;
    }
}

.overview-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin: 135px 25px;
    padding: 0 24px;
    background: transparent;
    border-radius: 0;
}

.overview-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 28px;
    background: #f2f6fb;
    border-radius: 18px;
}

.overview-copy,
.journal-panel {
    min-height: 430px;
    padding: 44px 42px;
    border-radius: 18px;
}

@media (max-width: 800px) {
    .overview-section {
        grid-template-columns: 1fr;
        width: min(calc(100% - 44px), 1200px);
        padding: 20px;
    }

    .overview-copy,
    .journal-panel {
        min-height: auto;
        padding: 32px 28px;
    }
}

.overview-kicker {
    color: #c58c16;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.overview-copy h2,
.journal-panel h2 {
    color: #122f59;
    font-family: "Playfair Display", serif;
    font-size: 31px;
    line-height: 1.25;
    margin-bottom: 17px;
}

.overview-copy p,
.journal-panel p {
    color: #68778d;
    font-size: 14px;
    margin-bottom: 22px;
}

.overview-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border: 1px solid #123866;
    border-radius: 8px;
    background: #123866;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15px;
    box-shadow: 0 8px 20px rgba(18, 56, 102, 0.18);
    transition: 0.25s ease;
}

.overview-link:hover {
    border-color: #d99b18;
    background: #d99b18;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(217, 155, 24, 0.22);
}

.journal-panel {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 86% 15%, rgba(247, 198, 86, 0.18), transparent 28%),
        linear-gradient(135deg, #071e43, #123f72 68%, #175c94);
    border: 0;
}

.journal-panel::after {
    content: "IJAIR";
    position: absolute;
    right: -13px;
    bottom: -35px;
    color: rgba(255, 255, 255, 0.055);
    font-family: "Playfair Display", serif;
    font-size: 112px;
    font-weight: 700;
}

.journal-panel h2 {
    color: #ffffff;
}

.journal-panel p {
    color: #d8e4f2;
}

.journal-tags {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.journal-tags span {
    padding: 7px 11px;
    color: #f1cd72;
    border: 1px solid rgba(241, 205, 114, 0.3);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 90px;
}

.trust-item {
    background: #ffffff;
    border: 1px solid #e4ebf4;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 18px 45px rgba(14, 43, 80, 0.06);
}

.trust-item span {
    display: block;
    color: #c28a18;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.trust-item strong {
    display: block;
    color: #14325c;
    font-size: 16px;
}


/* =========================================================
           SECTION HEADER
        ========================================================= */

.section-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;
}

.section-title {
    display: flex;

    align-items: center;

    gap: 15px;
}

.section-line {
    width: 52px;
    height: 4px;

    background: #dfa52d;

    border-radius: 5px;
}

.section-title h2 {
    font-family: "Playfair Display", serif;

    font-size: 32px;

    color: #122f59;

    font-weight: 600;
}

.view-all {
    color: #12325d;
    background: #ffffff;
    border: 1px solid #dde6f0;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s;
}

.view-all:hover {
    color: #ffffff;
    background: #12325d;
    border-color: #12325d;
}


/* =========================================================
           CATEGORIES
        ========================================================= */

.categories {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 32px;
}

.category {
    background: #ffffff;

    border: 1px solid #dfe6ee;

    color: #68778d;

    padding: 10px 18px;

    border-radius: 30px;

    font-size: 13px;

    cursor: pointer;

    transition: 0.25s;
}

.category:hover,
.category.active {
    background: #12325d;

    color: #ffffff;

    border-color: #12325d;
}


/* =========================================================
           PUBLICATIONS
        ========================================================= */

.publication-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 23px;
}

.publication-card {
    background: #ffffff;
    border: 1px solid #e2e9f2;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 18px 45px rgba(14, 43, 80, 0.06);
}

.publication-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 26px 60px rgba(20, 45, 80, 0.13);
}

.publication-cover {
    height: 250px;
    background:
        radial-gradient(circle at 75% 20%, rgba(247, 198, 86, 0.28), transparent 28%),
        linear-gradient(145deg,
            #071f45,
            #164b80);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.book-design {
    width: 165px;
    height: 215px;

    background: #ffffff;

    box-shadow: 12px 18px 35px rgba(0, 0, 0, 0.24);

    padding: 26px 17px;

    text-align: center;

    position: relative;
}

.book-design::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 8px;
    height: 100%;

    background: #dfa52d;
}

.book-small {
    color: #c49320;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 23px;
}

.book-design h3 {
    font-family: "Playfair Display", serif;

    color: #12335d;

    font-size: 21px;

    line-height: 1.3;
}

.book-design p {
    margin-top: 22px;

    color: #8994a4;

    font-size: 9px;

    line-height: 1.5;
}

.publication-info {
    padding: 20px;
}

.publication-type {
    display: inline-block;

    color: #c89118;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}

.publication-info h3 {
    color: #19345d;

    font-size: 16px;

    line-height: 1.5;

    margin-bottom: 9px;
}

.publication-info p {
    color: #8591a2;

    font-size: 12px;
}


/* =========================================================
           Journal SECTION
        ========================================================= */

.publication-types {
    padding: 105px 6%;
    background: #f5f8fc;
}

.types-heading {
    max-width: 690px;
    margin: 0 auto 30px;
    text-align: center;
}

.types-kicker {
    color: #c98708;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.types-heading h2 {
    margin: 11px 0 14px;
    color: #102f5c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
}

.types-heading p {
    margin: 0;
    color: #687992;
    line-height: 1.7;
}

.type-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 34px 0 38px;
}

.type-filter {
    padding: 11px 21px;
    border: 1px solid #d7e0ec;
    border-radius: 30px;
    background: #fff;
    color: #5c6f89;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
}

.type-filter.active,
.type-filter:hover {
    border-color: #123765;
    background: #123765;
    color: #fff;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1180px;
    margin: auto;
}

.type-card {
    position: relative;
    min-height: 205px;
    padding: 30px 26px;
    border: 1px solid #dfe6ef;
    border-radius: 16px;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(16, 47, 92, 0.10);
}

.type-number {
    display: block;
    margin-bottom: 34px;
    color: #ce920e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.type-card h3 {
    margin: 0 0 10px;
    color: #153562;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.25;
}

.type-card p {
    margin: 0;
    color: #6f7f96;
    font-size: 14px;
    line-height: 1.65;
}

.type-card.hide {
    display: none;
}

@media (max-width: 900px) {
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .publication-types {
        padding: 72px 22px;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
           RESEARCH SECTION
        ========================================================= */

.research-section {
    margin-top: 85px;
}

.research-layout {
    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 25px;
}

.research-list {
    display: flex;

    flex-direction: column;

    gap: 15px;
}

.research-card {
    background: #ffffff;

    border: 1px solid #e2e8ef;

    border-radius: 18px;

    padding: 24px;

    display: flex;

    align-items: center;

    gap: 25px;

    transition: 0.25s;
}

.research-card:hover {
    border-color: #d4a235;

    box-shadow: 0 10px 25px rgba(20, 45, 80, 0.06);
}

.research-category {
    color: #c68f18;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.research-card h3 {
    color: #19355e;

    font-size: 17px;

    line-height: 1.5;

    margin: 8px 0;
}

.research-card p {
    color: #8994a4;

    font-size: 12px;
}

.research-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #edf3f9;

    color: #153861;

    display: flex;

    align-items: center;

    justify-content: center;
}

.research-icon svg {
    width: 21px;
    height: 21px;
}


/* =========================================================
           SIDEBAR
        ========================================================= */

.sidebar-card {
    background: #ffffff;

    border: 1px solid #e2e8ef;

    border-radius: 18px;

    padding: 27px;
    box-shadow: 0 18px 45px rgba(14, 43, 80, 0.06);
}

.sidebar-card h3 {
    font-family: "Playfair Display", serif;

    color: #17345e;

    font-size: 24px;

    margin-bottom: 18px;
}

.sidebar-item {
    padding: 17px 0;

    border-bottom: 1px solid #edf0f4;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item span {
    color: #c99118;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}

.sidebar-item p {
    color: #596b83;

    font-size: 13px;

    line-height: 1.55;

    margin-top: 5px;
}


/* =========================================================
           AUTHOR CTA
        ========================================================= */

.author-cta {
    margin-top: 80px;

    padding: 48px 50px;

    border-radius: 24px;

    background:
        radial-gradient(circle at 85% 50%,
            rgba(61, 112, 167, 0.35),
            transparent 35%),
        linear-gradient(120deg,
            #081f48,
            #16487b);

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.author-cta h2 {
    font-family: "Playfair Display", serif;

    font-size: 34px;

    font-weight: 600;

    margin-bottom: 8px;
}

.author-cta p {
    color: #cedbea;

    font-size: 15px;
}

.cta-button {
    background: #dfa52d;

    color: #071d42;

    padding: 16px 25px;

    border-radius: 999px;

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

    transition: 0.25s;
}

.cta-button:hover {
    background: #ffffff;

    color: #102e55;
}


/* =========================================================
           FOOTER
        ========================================================= */

footer {
    background: #061a39;

    color: #b8c6da;

    padding: 60px 6% 28px;
}

.footer-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 55px;
}

.footer-brand img {
    width: 210px;

    background: #ffffff;

    padding: 8px;

    border-radius: 5px;
}

.footer-brand p {
    max-width: 340px;

    margin-top: 20px;

    font-size: 13px;

    line-height: 1.8;
}

footer h4 {
    color: #ffffff;

    font-size: 14px;

    margin-bottom: 20px;
}

footer ul {
    list-style: none;
}

footer li {
    font-size: 13px;

    margin-bottom: 12px;

    transition: 0.2s;
}

footer li:hover {
    color: #dfa52d;
}

.copyright {
    max-width: 1200px;

    margin: 45px auto 0;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;

    font-size: 11px;

    color: #8fa0b8;
}


/* =========================================================
           TABLET
        ========================================================= */

@media (max-width: 1100px) {

    .navbar {
        padding: 0 3%;
    }

    .top-bar {
        padding: 0 3%;
    }

    .nav-menu {
        gap: 17px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .logo img {
        width: 185px;
    }

    .publication-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

}


/* =========================================================
           MOBILE
        ========================================================= */

@media (max-width: 800px) {

    .overview-section {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 70px;
    }

    .top-bar {
        height: 40px;

        justify-content: center;

        font-size: 11px;
    }

    .top-right {
        display: none;
    }

    .navbar {
        height: auto;

        padding: 20px;

        flex-direction: column;

        gap: 22px;
    }

    .logo img {
        width: 200px;
    }

    .nav-menu {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px 20px;
    }

    .nav-menu a {
        padding: 4px 0;

        font-size: 13px;
    }

    .nav-menu .active::after {
        bottom: -6px;
    }

    .submit-btn {
        padding: 11px 16px !important;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 65px 20px 70px;
    }

    .hero h1 {
        font-size: 48px;

        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 16px;
    }

    .search-box {
        min-height: 65px;
    }

    .search-box input {
        font-size: 14px;
    }

    .main-content {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 27px;
    }

    .research-layout {
        grid-template-columns: 1fr;
    }

    .author-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

}


/* =========================================================
           SMALL MOBILE
        ========================================================= */

@media (max-width: 550px) {

    .top-left span:not(.gold-dot) {
        font-size: 10px;
    }

    .nav-menu {
        gap: 12px 16px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 38px;

        line-height: 1.2;
    }

    .hero-small {
        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .search-tabs {
        gap: 6px;
    }

    .search-tab {
        padding: 7px 12px;

        font-size: 11px;
    }

    .search-box {
        padding: 6px;
    }

    .search-icon {
        width: 42px;
    }

    .search-box input {
        font-size: 13px;

        min-width: 0;
    }

    .search-btn {
        width: 48px;
        height: 48px;
    }

    .publication-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .section-header {
        align-items: flex-start;

        gap: 15px;
    }

    .section-title h2 {
        font-size: 25px;
    }

    .view-all {
        font-size: 12px;
    }

    .research-card {
        padding: 20px;
    }

    .research-card h3 {
        font-size: 15px;
    }

    .author-cta h2 {
        font-size: 27px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}

/* Section background rhythm */
.publication-process {
    background: #ffffff;
}

.overview-section {
    background: #f4f7fb;
    border-radius: 24px;
}

.publication-types {
    background: #ffffff;
}

.research-section {
    background: #fbf8f2;
    border-radius: 24px;
}

/* Keep spacing around coloured sections */
.overview-section,
.research-section {
    margin: 42px 0;
    padding: 70px 6%;
}




/* About page */


.inner-page-hero {
    padding: 105px 6%;
    background:
        radial-gradient(circle at 82% 20%, rgba(216, 153, 24, 0.18), transparent 24%),
        linear-gradient(135deg, #092b59, #174b81);
    color: #ffffff;
    text-align: center;
}

.inner-page-hero-content {
    max-width: 760px;
    margin: auto;
}

.inner-page-hero span {
    color: #e0a52d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.inner-page-hero h1 {
    margin: 14px 0 16px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.1;
}

.inner-page-hero h1 em {
    color: #e0a52d;
    font-style: normal;
}

.inner-page-hero p {
    max-width: 650px;
    margin: auto;
    color: #dbe7f5;
    line-height: 1.7;
}

.about-intro-section,
.about-focus-section,
.about-publications-section,
.about-commitment-section {
    padding: 95px 6%;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 50px;
    max-width: 1180px;
    margin: auto;
    align-items: center;
}

.section-kicker {
    display: inline-block;
    color: #c98708;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-intro-copy h2,
.section-heading-left h2,
.about-publications-content h2,
.commitment-card h2 {
    margin: 12px 0 18px;
    color: #102f5d;
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.2;
}

.about-intro-copy p,
.section-heading-left p,
.about-publications-content p,
.commitment-card p {
    color: #687992;
    line-height: 1.8;
}

.about-intro-copy p + p {
    margin-top: 14px;
}

.about-highlight-card {
    padding: 38px;
    border-radius: 18px;
    background: #102f5d;
    box-shadow: 0 20px 40px rgba(16, 47, 93, 0.16);
}

.highlight-label {
    color: #e0a52d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-highlight-card h3 {
    margin: 16px 0 14px;
    color: #ffffff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    line-height: 1.25;
}

.about-highlight-card p {
    color: #d8e4f2;
    line-height: 1.75;
}

.about-focus-section {
    background: #f4f7fb;
}

.section-heading-left {
    max-width: 690px;
    margin: 0 auto 38px;
    text-align: center;
}

.about-focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1180px;
    margin: auto;
}

.focus-card {
    padding: 32px 28px;
    border: 1px solid #e0e7f0;
    border-radius: 16px;
    background: #ffffff;
}

.focus-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 25px;
    place-items: center;
    border-radius: 12px;
    background: #eef4fb;
    color: #123866;
}

.focus-icon svg {
    width: 21px;
}

.focus-card h3 {
    margin-bottom: 10px;
    color: #123866;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 22px;
}

.focus-card p {
    color: #708098;
    font-size: 14px;
    line-height: 1.7;
}

.about-publications-section {
    background: #ffffff;
}

.about-publications-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.publication-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.publication-list span {
    padding: 11px 16px;
    border: 1px solid #dce4ef;
    border-radius: 8px;
    background: #f8fafc;
    color: #123866;
    font-size: 14px;
    font-weight: 600;
}

.about-commitment-section {
    background: #fbf8f2;
}

.commitment-card {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 50px;
    max-width: 1180px;
    margin: auto;
    padding: 45px;
    border: 1px solid #f0e5cc;
    border-radius: 18px;
    background: #ffffff;
}

.commitment-card h2 {
    margin-bottom: 0;
}

@media (max-width: 850px) {
    .about-intro-grid,
    .commitment-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-focus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .inner-page-hero,
    .about-intro-section,
    .about-focus-section,
    .about-publications-section,
    .about-commitment-section {
        padding: 70px 22px;
    }

    .about-highlight-card,
    .commitment-card {
        padding: 28px;
    }
}