/* =========================================
   SYNOD OF ANGLICAN EPISCOPAL CHURCHES
   GLOBAL STYLES
========================================= */

:root {
    --navy: #17233c;
    --navy-dark: #0f192d;

    --burgundy: #6b2635;

    --gold: #c9a227;
    --gold-light: #dfc15a;

    --ivory: #faf8f3;
    --cream: #f1efe8;

    --white: #ffffff;

    --text: #2c2c2c;
    --text-muted: #6d6d6d;

    --border: #e7e3d9;

    --shadow: 0 15px 40px rgba(23, 35, 60, 0.08);

    --radius: 12px;
}


/* =========================================
   GLOBAL
========================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--ivory);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    color: var(--navy);
    line-height: 1.25;
}

a {
    text-decoration: none;
}


/* =========================================
   NAVBAR
========================================= */

.synod-navbar {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.synod-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    color: var(--navy);
    font-family: "Playfair Display", serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.brand-subtitle {
    color: var(--text-muted);
    font-size: 0.67rem;
    letter-spacing: 0.5px;
    max-width: 190px;
}

.navbar-nav .nav-link {
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 9px 11px !important;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--gold);
}

.nav-link-university {
    font-weight: 700 !important;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
    border-radius: 6px;
    padding: 9px 18px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-1px);
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    box-shadow: var(--shadow);
}

.dropdown-item {
    color: var(--navy);
    border-radius: 5px;
    padding: 9px 12px;
}

.dropdown-item:hover {
    background: var(--cream);
    color: var(--burgundy);
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 25px;
}

.footer-brand {
    display: flex;
    gap: 18px;
}

.footer-cross {
    color: var(--gold);
    font-size: 2rem;
}

.footer-brand h5 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 440px;
}

.footer-heading {
    color: var(--gold);
    font-family: "DM Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 9px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: white;

    transition: all 0.25s ease;
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 45px 0 22px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.78rem;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .synod-navbar {
        padding: 10px 0;
    }

    .navbar-collapse {
        padding-top: 15px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
    }

    .btn-gold {
        display: inline-block;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 5px;
    }

}

@media (max-width: 575.98px) {

    .brand-mark img {
        width: 46px;
        height: 46px;
    }

    .brand-name {
        font-size: 1.05rem;
    }

    .brand-subtitle {
        font-size: 0.58rem;
    }

    .site-footer {
        padding-top: 50px;
    }

}

.synod-navbar {
    transition: box-shadow 0.25s ease;
}

.synod-navbar.navbar-scrolled {
    box-shadow: 0 5px 25px rgba(23, 35, 60, 0.08);
}


/* =========================================
   HOMEPAGE HERO
========================================= */

.home-hero {
    position: relative;
    min-height: 680px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(15, 25, 45, 0.96) 0%,
            rgba(15, 25, 45, 0.86) 45%,
            rgba(15, 25, 45, 0.35) 100%
        ),
        url("../images/hero.jpg") center center / cover no-repeat;

    color: white;
}

.hero-eyebrow {
    display: inline-block;

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 18px;
}

.home-hero h1 {
    color: white;
    font-size: clamp(3rem, 6vw, 5.3rem);
    margin-bottom: 25px;
}

.home-hero h1 span {
    display: block;
    color: var(--gold-light);
}

.home-hero p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 1.15rem;
    line-height: 1.8;

    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* =========================================
   WELCOME
========================================= */

.welcome-section {
    background: var(--ivory);
}

.section-label {
    display: inline-block;

    color: var(--burgundy);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 12px;
}

.welcome-section h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 20px;
}

.welcome-section .lead {
    color: var(--navy);
    font-size: 1.15rem;
}


/* =========================================
   FEATURE CARDS
========================================= */

.feature-section {
    background: var(--cream);
    padding: 80px 0;
}

.feature-card {
    position: relative;

    display: block;

    height: 100%;

    background: white;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 32px;

    color: var(--text);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover {
    color: var(--text);

    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.feature-number {
    display: block;

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-arrow {
    display: inline-block;

    color: var(--burgundy);

    font-size: 1.3rem;

    margin-top: 10px;
}

.feature-card-gold {
    background: var(--navy);
    border-color: var(--navy);
}

.feature-card-gold h3 {
    color: white;
}

.feature-card-gold p {
    color: rgba(255, 255, 255, 0.68);
}

.feature-card-gold .feature-arrow {
    color: var(--gold);
}

/* =========================================
   INNER PAGE HERO
========================================= */

.inner-page-hero {
    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );

    color: white;

    padding: 100px 0 95px;

    text-align: center;
}

.inner-page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.inner-page-hero h1 {
    color: white;

    font-size: clamp(
        3rem,
        6vw,
        4.8rem
    );

    margin: 15px 0;
}

.inner-page-hero p {
    color: rgba(255, 255, 255, 0.78);

    font-size: 1.1rem;

    max-width: 650px;

    margin: 0 auto;

    line-height: 1.8;
}

.gold-line {
    width: 55px;
    height: 2px;

    background: var(--gold);

    margin: 25px auto;
}


/* =========================================
   BELIEFS INTRODUCTION
========================================= */

.belief-introduction {
    background: var(--ivory);

    padding: 90px 0 70px;
}

.belief-introduction h2 {
    font-size: clamp(
        2.2rem,
        4vw,
        3.5rem
    );

    margin-bottom: 25px;
}

.belief-intro-text {
    color: var(--text-muted);

    font-size: 1rem;

    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    line-height: 1.9;
}


/* =========================================
   BELIEFS
========================================= */

.beliefs-section {
    background: var(--white);

    padding: 30px 0 90px;
}

.belief-item {
    padding: 60px 0;

    border-bottom: 1px solid var(--border);
}

.belief-item:last-child {
    border-bottom: none;
}

.belief-number {
    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 3.5rem;

    font-weight: 600;

    line-height: 1;
}

.belief-title {
    color: var(--navy);

    font-size: clamp(
        1.8rem,
        3vw,
        2.5rem
    );

    margin-bottom: 15px;
}

.belief-gold-line {
    width: 40px;
    height: 2px;

    background: var(--gold);

    margin-bottom: 22px;
}

.belief-text {
    color: var(--text);

    font-size: 1.05rem;

    line-height: 1.9;

    max-width: 900px;

    margin-bottom: 25px;
}


/* =========================================
   SCRIPTURE REFERENCE
========================================= */

.scripture-reference {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 12px;

    background: var(--cream);

    border-left: 3px solid var(--gold);

    padding: 13px 18px;

    max-width: 900px;
}

.scripture-label {
    color: var(--burgundy);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    white-space: nowrap;
}

.scripture-label i {
    margin-right: 5px;
}

.scripture-text {
    color: var(--text-muted);

    font-size: 0.9rem;
}


/* =========================================
   BELIEF CLOSING
========================================= */

.belief-closing {
    background: var(--navy);

    color: white;

    padding: 100px 20px;
}

.belief-closing-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.closing-symbol {
    color: var(--gold);

    font-size: 1.8rem;

    margin-bottom: 20px;
}

.belief-closing blockquote {
    color: white;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        1.8rem,
        4vw,
        3rem
    );

    font-style: italic;

    line-height: 1.4;

    margin: 0 auto 25px;
}

.belief-closing p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 0.85rem;

    letter-spacing: 0.5px;
}


/* =========================================
   BELIEFS MOBILE
========================================= */

@media (max-width: 767.98px) {

    .inner-page-hero {
        padding: 75px 0 70px;
    }

    .belief-introduction {
        padding: 70px 0 45px;
    }

    .belief-item {
        padding: 45px 0;
    }

    .belief-number {
        font-size: 2.7rem;
    }

    .belief-text {
        font-size: 1rem;
    }

    .scripture-reference {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .belief-closing {
        padding: 75px 20px;
    }

}

/* =========================================
   MISSION PAGE
========================================= */

.mission-introduction {
    background: var(--ivory);

    padding: 90px 0 80px;
}

.mission-introduction h2 {
    font-size: clamp(
        2.2rem,
        4vw,
        3.5rem
    );

    margin-bottom: 25px;
}

.mission-lead {
    max-width: 800px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 1.1rem;

    line-height: 1.9;
}


/* =========================================
   MISSION THEMES
========================================= */

.mission-themes {
    background: var(--white);

    padding: 20px 0 90px;
}


.mission-theme {
    padding: 65px 35px;

    border-bottom: 1px solid var(--border);

    background: var(--white);

    transition: background-color 0.3s ease;
}

.mission-theme:nth-child(even) {
    background: #faf8f2;
}


.mission-theme:last-child {
    border-bottom: none;
}

.mission-theme-marker {
    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;
}

.mission-icon {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--navy);

    color: var(--gold);

    border-radius: 50%;

    font-size: 1.7rem;

    flex-shrink: 0;
}

.mission-number {
    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 3.2rem;

    font-weight: 600;

    line-height: 1;
}

.mission-label {
    display: inline-block;

    color: var(--burgundy);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.mission-theme-title {
    color: var(--navy);

    font-size: clamp(
        1.9rem,
        3vw,
        2.6rem
    );

    margin-bottom: 15px;
}

.mission-theme-intro {
    max-width: 850px;

    color: var(--text-muted);

    font-size: 1.03rem;

    line-height: 1.85;

    margin-bottom: 25px;
}


/* =========================================
   MISSION POINTS
========================================= */

.mission-points {
    list-style: none;

    margin: 0;
    padding: 0;

    max-width: 900px;
}

.mission-points li {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    padding: 12px 0;

    color: var(--text);

    line-height: 1.75;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mission-points li:last-child {
    border-bottom: none;
}

.mission-check {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    margin-top: 3px;

    background: rgba(184, 148, 76, 0.12);

    color: var(--gold-dark);

    border-radius: 50%;

    flex-shrink: 0;

    font-size: 0.8rem;
}


/* =========================================
   MISSION CLOSING
========================================= */

.mission-closing {
    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );

    color: white;

    padding: 105px 20px;
}

.mission-closing-content {
    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.mission-closing blockquote {
    color: white;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        2rem,
        4.5vw,
        3.4rem
    );

    font-style: italic;

    line-height: 1.4;

    margin: 0 auto 18px;
}

.mission-verse {
    display: block;

    color: var(--gold);

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 25px;
}

.mission-closing p {
    color: rgba(255, 255, 255, 0.65);

    font-size: 0.9rem;

    letter-spacing: 0.5px;
}


/* =========================================
   MISSION MOBILE
========================================= */

@media (max-width: 767.98px) {

    .mission-introduction {
        padding: 70px 0 55px;
    }

    .mission-themes {
        padding: 10px 0 60px;
    }

    .mission-theme {
    padding: 45px 20px;
    }

    .mission-theme-marker {
        margin-bottom: 10px;
    }

    .mission-icon {
        width: 60px;
        height: 60px;

        font-size: 1.4rem;
    }

    .mission-number {
        font-size: 2.6rem;
    }

    .mission-theme-intro {
        font-size: 1rem;
    }

    .mission-closing {
        padding: 75px 20px;
    }

}
/* =========================================
   CANONS — MOBILE
========================================= */

@media (max-width: 767.98px) {

    .liturgical-colours {
        grid-template-columns: 1fr;
    }

    .liturgical-colour {
        padding: 18px;
    }

}

/* =========================================
   CANON 06 — MOBILE
========================================= */

@media (max-width: 767.98px) {

    .canon-intro-card {
        gap: 15px;

        padding: 20px;
    }

    .canon-intro-icon {
        width: 42px;

        height: 42px;

        min-width: 42px;

        font-size: 1.05rem;
    }

    .sacrament-section {
        margin: 30px 0;

        padding: 22px 20px;
    }

    .sacrament-heading {
        gap: 12px;

        margin-bottom: 18px;
    }

    .sacrament-number {
        width: 34px;

        height: 34px;

        min-width: 34px;
    }

    .sacrament-heading h3 {
        font-size: 1.25rem;
    }

    .sacrament-note {
        align-items: flex-start;

        padding: 18px 20px;
    }

}

/* =========================================
   CANON 07 — MOBILE
========================================= */

@media (max-width: 767.98px) {

    .matrimony-principle {
        gap: 14px;

        padding: 20px;
    }

    .matrimony-principle-icon {
        width: 40px;

        height: 40px;

        min-width: 40px;
    }

}

/* =========================================
   CANON 08 — MOBILE
========================================= */

@media (max-width: 767.98px) {

    .sacred-place-note {
        gap: 14px;

        padding: 20px;
    }

    .sacred-place-note > i {
        width: 40px;

        height: 40px;

        min-width: 40px;
    }

}

/* =========================================
   CANONS PAGE
========================================= */

.canons-introduction {
    background: var(--ivory);

    padding: 90px 0 75px;
}

.canons-introduction h2 {
    font-size: clamp(
        2.2rem,
        4vw,
        3.5rem
    );

    margin-bottom: 25px;
}

.canons-lead {
    max-width: 800px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 1.08rem;

    line-height: 1.9;
}


/* =========================================
   DOCUMENT AREA
========================================= */

.canons-document {
    background: var(--white);

    padding: 70px 0 100px;
}


/* =========================================
   SIDEBAR
========================================= */

.canons-sidebar {
    position: sticky;

    top: 100px;

    background: #faf8f2;

    border: 1px solid var(--border);

    padding: 25px 0;
}

.canons-sidebar-title {
    padding: 0 25px 20px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.5rem;

    font-weight: 600;

    border-bottom: 1px solid var(--border);

    margin-bottom: 10px;
}

.canons-sidebar nav {
    display: flex;

    flex-direction: column;
}

.canon-nav-link {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 13px 25px;

    color: var(--text-muted);

    text-decoration: none;

    font-size: 0.88rem;

    line-height: 1.4;

    border-left: 3px solid transparent;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.canon-nav-link:hover {
    color: var(--navy);

    background: rgba(184, 148, 76, 0.08);

    border-left-color: var(--gold);
}

.canon-nav-link.active {
    color: var(--navy);

    background: rgba(184, 148, 76, 0.12);

    border-left-color: var(--gold);

    font-weight: 600;
}

.canon-nav-number {
    color: var(--gold-dark);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 1px;

    flex-shrink: 0;
}


/* =========================================
   CANON SECTION
========================================= */

.canon-section {
    scroll-margin-top: 100px;
}

.canon-section-heading {
    margin-bottom: 40px;
}

.canon-number {
    display: block;

    color: var(--burgundy);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.canon-section-heading h2 {
    color: var(--navy);

    font-size: clamp(
        2rem,
        3.5vw,
        3rem
    );

    margin-bottom: 15px;
}


/* =========================================
   CANON CONTENT
========================================= */

.canon-content {
    color: var(--text);

    font-size: 1rem;

    line-height: 1.9;
}

.canon-content p {
    margin-bottom: 24px;
}

.canon-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   RESOLUTION
========================================= */

.canon-resolution {
    margin: 45px 0 30px;

    padding: 20px 25px;

    background: #faf8f2;

    border-left: 4px solid var(--gold);
}

.canon-resolution span {
    color: var(--navy);

    font-size: 0.76rem;

    font-weight: 700;

    letter-spacing: 1.5px;
}


/* =========================================
   RESOLUTIONS LIST
========================================= */

.canon-resolutions {
    margin: 0 0 40px;

    padding-left: 1.5rem;
}

.canon-resolutions li {
    padding-left: 10px;

    margin-bottom: 20px;

    line-height: 1.85;
}

.canon-resolutions li::marker {
    color: var(--gold-dark);

    font-family: "Playfair Display", serif;

    font-weight: 700;
}


/* =========================================
   SPECIFIC RULES
========================================= */

.canon-rules {
    margin-top: 40px;

    padding: 30px;

    background: #faf8f2;

    border: 1px solid var(--border);
}

.canon-rules p {
    position: relative;

    padding-left: 22px;

    margin-bottom: 18px;
}

.canon-rules p::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.8em;

    width: 6px;
    height: 6px;

    background: var(--gold);

    border-radius: 50%;
}

.canon-rules p:last-child {
    margin-bottom: 0;
}


/* =========================================
   BACK TO CANONS
========================================= */

.canon-back {
    margin-top: 55px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.canon-back a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--gold-dark);

    text-decoration: none;

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: color 0.25s ease;
}

.canon-back a:hover {
    color: var(--navy);
}


/* =========================================
   CANONS MOBILE
========================================= */

@media (max-width: 991.98px) {

    .canons-sidebar {
        position: static;
    }

    .canons-sidebar nav {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 575.98px) {

    .canons-introduction {
        padding: 70px 0 55px;
    }

    .canons-document {
        padding: 50px 0 70px;
    }

    .canons-sidebar nav {
        display: flex;
    }

    .canon-nav-link {
        padding: 12px 20px;
    }

    .canon-content {
        font-size: 0.96rem;

        line-height: 1.8;
    }

    .canon-rules {
        padding: 22px;
    }

}

/* =========================================
   CANON SUBHEADINGS
========================================= */

.canon-subheading {
    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.45rem;

    font-weight: 600;

    margin-top: 50px;

    margin-bottom: 20px;

    padding-bottom: 10px;

    border-bottom: 1px solid var(--border);
}

.canon-subheading:first-child {
    margin-top: 0;
}

/* =========================================
   CANON HIGHLIGHT
========================================= */

.canon-highlight {
    margin: 45px 0;

    padding: 30px 32px;

    background:
        linear-gradient(
            135deg,
            #faf8f2,
            #f6f1e6
        );

    border-left: 4px solid var(--gold);

    position: relative;
}

.canon-highlight-label {
    display: block;

    color: var(--burgundy);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 1.8px;

    margin-bottom: 12px;
}

.canon-highlight p {
    margin: 0;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.12rem;

    line-height: 1.75;
}

/* =========================================
   LITURGICAL COLOURS
========================================= */

.liturgical-colours {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin: 35px 0 45px;
}

.liturgical-colour {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    background: #faf9f5;

    border: 1px solid var(--border);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.liturgical-colour:hover {
    transform: translateY(-2px);

    box-shadow: 0 8px 24px rgba(20, 37, 54, 0.07);
}

.colour-swatch {
    width: 42px;

    height: 42px;

    min-width: 42px;

    border-radius: 50%;

    border: 1px solid rgba(0, 0, 0, 0.12);

    margin-top: 3px;
}

.colour-white {
    background: #ffffff;
}

.colour-red {
    background: #9d2525;
}

.colour-green {
    background: #52754b;
}

.colour-purple {
    background: #654b7a;
}

.colour-rose {
    background: #c98282;
}

.colour-black {
    background: #202020;
}

.liturgical-colour h4 {
    margin: 0 0 8px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.15rem;
}

.liturgical-colour p {
    margin: 0;

    font-size: 0.94rem;

    line-height: 1.75;
}

.canon-list {
    padding-left: 1.3rem;

    margin-top: 20px;

    margin-bottom: 35px;
}

.canon-list li {
    margin-bottom: 10px;

    padding-left: 5px;
}

/* =========================================
   CANON 06 — HOLY SACRAMENTS
========================================= */

.canon-intro-card {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin: 25px 0 35px;

    padding: 26px 28px;

    background:
        linear-gradient(
            135deg,
            rgba(248, 244, 235, 0.95),
            rgba(255, 255, 255, 0.95)
        );

    border-left: 4px solid var(--gold);

    box-shadow: 0 8px 25px rgba(20, 37, 54, 0.06);
}

.canon-intro-icon {
    width: 48px;

    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--navy);

    color: #fff;

    font-size: 1.25rem;
}

.canon-intro-card h3 {
    margin: 0 0 8px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.25rem;
}

.canon-intro-card p {
    margin: 0;

    line-height: 1.8;
}


/* SACRAMENT SECTIONS */

.sacrament-section {
    position: relative;

    margin: 45px 0;

    padding: 30px 32px;

    background: #faf9f6;

    border: 1px solid var(--border);

    border-radius: 3px;
}

.sacrament-heading {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 22px;
}

.sacrament-number {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    min-width: 38px;

    border-radius: 50%;

    background: var(--navy);

    color: #fff;

    font-family: "Playfair Display", serif;

    font-size: 0.9rem;
}

.sacrament-heading h3 {
    margin: 0;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.45rem;
}

.sacrament-section p:last-child {
    margin-bottom: 0;
}


/* SACRAMENT NOTE */

.sacrament-note {
    display: flex;

    align-items: center;

    gap: 16px;

    margin: 45px 0 35px;

    padding: 22px 25px;

    background: rgba(181, 145, 67, 0.08);

    border-top: 1px solid rgba(181, 145, 67, 0.25);

    border-bottom: 1px solid rgba(181, 145, 67, 0.25);

    color: var(--navy);
}

.sacrament-note i {
    color: var(--gold);

    font-size: 1.3rem;

    min-width: 24px;
}

.sacrament-note p {
    margin: 0;

    font-style: italic;

    line-height: 1.7;
}

/* =========================================
   CANON 07 — HOLY MATRIMONY
========================================= */

.matrimony-intro {
    border-left-color: #9d2525;
}

.matrimony-intro .canon-intro-icon {
    background: #7f2429;
}


.matrimony-principle {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin: 40px 0 35px;

    padding: 25px 28px;

    background:
        linear-gradient(
            135deg,
            rgba(181, 145, 67, 0.08),
            rgba(255, 255, 255, 0.96)
        );

    border-top: 1px solid rgba(181, 145, 67, 0.25);

    border-bottom: 1px solid rgba(181, 145, 67, 0.25);
}

.matrimony-principle-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    min-width: 44px;

    border-radius: 50%;

    background: var(--gold);

    color: #fff;

    font-size: 1.1rem;
}

.matrimony-principle h3 {
    margin: 0 0 8px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.2rem;
}

.matrimony-principle p {
    margin: 0;

    line-height: 1.8;
}

/* =========================================
   CANON 08 — SACRED PLACES
========================================= */

.sacred-intro {
    border-left-color: var(--gold);
}

.sacred-intro .canon-intro-icon {
    background: var(--navy);
}


.sacred-place-note {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin: 35px 0 40px;

    padding: 25px 28px;

    background:
        linear-gradient(
            135deg,
            rgba(248, 244, 235, 0.95),
            rgba(255, 255, 255, 0.98)
        );

    border: 1px solid rgba(181, 145, 67, 0.25);

    border-radius: 3px;
}

.sacred-place-note > i {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 44px;

    height: 44px;

    min-width: 44px;

    border-radius: 50%;

    background: var(--gold);

    color: #fff;

    font-size: 1.1rem;
}

.sacred-place-note h3 {
    margin: 0 0 8px;

    color: var(--navy);

    font-family: "Playfair Display", serif;

    font-size: 1.2rem;
}

.sacred-place-note p {
    margin: 0;

    line-height: 1.8;
}

/* =========================================
   CANONS SIDEBAR — DESKTOP
========================================= */

@media (min-width: 992px) {

    .canons-sidebar {
        position: sticky;
        top: 110px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
    }

}


/* university styles */

/* =========================================================
   UNIVERSITY PAGE
========================================================= */


/* ---------------------------------------------------------
   UNIVERSITY HERO
--------------------------------------------------------- */

.university-hero {
    position: relative;
    min-height: 560px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(8, 27, 48, 0.98),
            rgba(15, 48, 74, 0.94)
        );

    color: #fff;

    overflow: hidden;
}

.university-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;

    border: 1px solid rgba(184, 148, 76, 0.25);
    border-radius: 50%;

    right: -150px;
    top: -150px;
}

.university-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;

    right: 80px;
    bottom: -220px;
}

.university-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding: 100px 0;
}

.university-hero h1 {
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 600;

    line-height: 1.08;

    margin: 18px 0;
}

.university-hero-subtitle {
    max-width: 720px;

    font-size: 1.2rem;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);

    margin-bottom: 35px;
}

.university-hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* ---------------------------------------------------------
   INTRODUCTION
--------------------------------------------------------- */

.university-intro {
    background: #fff;
}

.university-intro p {
    color: #5e6670;
    line-height: 1.9;
}

.university-highlight-card {
    position: relative;

    padding: 45px;

    background:
        linear-gradient(
            145deg,
            #f8f4eb,
            #fff
        );

    border: 1px solid rgba(184, 148, 76, 0.25);

    box-shadow: 0 20px 55px rgba(8, 27, 48, 0.08);
}

.university-highlight-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gold);
    color: #fff;

    font-size: 1.4rem;

    margin-bottom: 25px;
}

.university-highlight-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
}

.university-highlight-card p {
    color: #626a73;
    line-height: 1.8;
}

.university-highlight-line {
    width: 60px;
    height: 2px;

    background: var(--gold);

    margin: 25px 0 18px;
}

.university-highlight-card span,
.university-highlight-card small {
    display: block;
}

.university-highlight-card span {
    color: var(--navy);
    font-weight: 600;
}

.university-highlight-card small {
    color: #777;
    margin-top: 5px;
}


/* ---------------------------------------------------------
   OBJECTIVES
--------------------------------------------------------- */

.university-objectives {
    background: #f7f8fa;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;

    color: #68717b;
    line-height: 1.8;
}

.university-objective-card {
    height: 100%;

    padding: 32px;

    background: #fff;

    border: 1px solid #e6e9ed;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.university-objective-card:hover {
    transform: translateY(-5px);

    border-color: rgba(184, 148, 76, 0.45);

    box-shadow: 0 15px 35px rgba(8, 27, 48, 0.08);
}

.objective-number {
    display: inline-block;

    color: var(--gold);

    font-size: 0.85rem;
    font-weight: 700;

    letter-spacing: 0.12em;

    margin-bottom: 20px;
}

.university-objective-card h3 {
    color: var(--navy);

    font-size: 1.25rem;

    margin-bottom: 12px;
}

.university-objective-card p {
    color: #69727b;

    line-height: 1.8;

    margin: 0;
}

.university-objective-feature {
    display: flex;
    gap: 25px;
    align-items: flex-start;

    padding: 35px;

    background: var(--navy);

    color: #fff;
}

.objective-feature-icon {
    flex-shrink: 0;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: #fff;

    font-size: 1.3rem;
}

.university-objective-feature h3 {
    color: #fff;
    margin-bottom: 10px;
}

.university-objective-feature p {
    color: rgba(255, 255, 255, 0.78);

    line-height: 1.8;

    margin: 0;
}


/* ---------------------------------------------------------
   ADMISSION
--------------------------------------------------------- */

.university-admission {
    background: #fff;
}

.admission-list {
    border-top: 1px solid #e3e5e8;
}

.admission-item {
    display: flex;
    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid #e3e5e8;
}

.admission-item span {
    flex-shrink: 0;

    color: var(--gold);

    font-size: 0.85rem;
    font-weight: 700;
}

.admission-item p {
    margin: 0;

    color: #5e6670;

    line-height: 1.7;
}


/* ---------------------------------------------------------
   IMPORTANT NOTE
--------------------------------------------------------- */

.university-note {
    background: #f7f4ed;
}

.university-note-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;

    padding: 45px;

    background: #fff;

    border-left: 4px solid var(--gold);

    box-shadow: 0 15px 40px rgba(8, 27, 48, 0.06);
}

.university-note-icon {
    flex-shrink: 0;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--navy);

    color: var(--gold);
}

.university-note-card h2 {
    color: var(--navy);
    margin: 8px 0 15px;
}

.university-note-card p {
    color: #606972;

    line-height: 1.85;

    margin: 0;
}


/* ---------------------------------------------------------
   PROGRAMMES
--------------------------------------------------------- */

.university-programmes {
    background: #fff;
}

.programme-card {
    height: 100%;

    padding: 35px;

    background: #f8f9fa;

    border: 1px solid #e4e7ea;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.programme-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 18px 40px rgba(8, 27, 48, 0.09);
}

.programme-card-featured {
    background: var(--navy);
    border-color: var(--navy);

    color: #fff;
}

.programme-level {
    display: block;

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    margin-bottom: 15px;
}

.programme-card h3 {
    color: var(--navy);

    font-size: 1.45rem;

    margin-bottom: 15px;
}

.programme-card-featured h3 {
    color: #fff;
}

.programme-card p {
    color: #68717a;

    line-height: 1.75;
}

.programme-card-featured p {
    color: rgba(255, 255, 255, 0.75);
}

.programme-codes {
    padding: 15px;

    margin: 20px 0;

    background: rgba(184, 148, 76, 0.10);

    color: var(--navy);

    font-weight: 600;

    line-height: 1.8;
}

.programme-card-featured .programme-codes {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.programme-card a {
    color: var(--gold);

    text-decoration: none;

    font-weight: 600;
}


/* ---------------------------------------------------------
   COURSE SECTIONS
--------------------------------------------------------- */

.university-course-section {
    background: #f7f8fa;
}

.university-course-section-alt {
    background: #fff;
}

.course-section-heading {
    max-width: 850px;

    margin-bottom: 45px;
}

.course-section-heading p {
    color: #68717a;

    line-height: 1.8;
}

.course-programme {
    background: #fff;

    border: 1px solid #e2e5e8;

    margin-bottom: 35px;

    overflow: hidden;
}

.university-course-section-alt .course-programme {
    background: #f8f9fa;
}

.course-programme-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 25px 30px;

    background: var(--navy);

    color: #fff;
}

.course-programme-header span:first-child {
    display: block;

    color: rgba(255, 255, 255, 0.72);

    font-size: 0.8rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.course-programme-header h3 {
    color: #fff;

    font-size: 1.5rem;

    margin: 5px 0 0;
}

.course-duration {
    flex-shrink: 0;

    padding: 8px 14px;

    border: 1px solid rgba(184, 148, 76, 0.5);

    color: var(--gold);

    font-size: 0.85rem;
}

.university-table {
    margin: 0;

    --bs-table-bg: transparent;
}

.university-table th {
    background: #f1f3f5;

    color: var(--navy);

    font-size: 0.78rem;

    text-transform: uppercase;

    letter-spacing: 0.05em;

    white-space: nowrap;
}

.university-table td,
.university-table th {
    padding: 15px 18px;

    border-color: #e4e7ea;

    vertical-align: middle;
}

.university-table td {
    color: #5f6871;

    font-size: 0.92rem;
}

.course-list-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;

    padding: 30px;
}

.course-list-grid > div {
    padding: 10px 30px;
}

.course-list-grid > div + div {
    border-left: 1px solid #e2e5e8;
}

.course-list-grid h4 {
    color: var(--navy);

    font-size: 1rem;

    margin-bottom: 18px;
}

.course-list-grid ol {
    padding-left: 22px;

    margin: 0;
}

.course-list-grid li {
    color: #606a73;

    line-height: 1.7;

    margin-bottom: 9px;

    font-size: 0.92rem;
}


/* ---------------------------------------------------------
   DOCTORAL
--------------------------------------------------------- */

.university-doctoral {
    background: var(--navy);
}

.doctoral-card {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 65px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.01)
        );

    border: 1px solid rgba(255, 255, 255, 0.10);

    overflow: hidden;
}

.doctoral-content {
    position: relative;
    z-index: 2;

    max-width: 800px;
}

.doctoral-content h2 {
    color: #fff;

    font-size: clamp(2rem, 4vw, 3.2rem);

    margin: 10px 0 15px;
}

.doctoral-content p {
    color: rgba(255, 255, 255, 0.75);

    line-height: 1.85;
}

.doctoral-abbreviation {
    color: var(--gold);

    font-size: 1.2rem;
    font-weight: 700;

    margin-bottom: 20px;
}

.doctoral-mark {
    flex-shrink: 0;

    width: 180px;
    height: 180px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(184, 148, 76, 0.45);
    border-radius: 50%;

    color: var(--gold);

    font-size: 3rem;
    font-weight: 600;

    letter-spacing: 0.08em;
}


/* ---------------------------------------------------------
   ALUMNI
--------------------------------------------------------- */

.university-alumni {
    background: #f7f8fa;
}

.alumni-table-wrapper {
    max-width: 900px;

    margin: 0 auto;

    background: #fff;

    border: 1px solid #e2e5e8;

    box-shadow: 0 15px 40px rgba(8, 27, 48, 0.05);
}

.alumni-table td:first-child,
.alumni-table th:first-child {
    width: 100px;

    text-align: center;
}

.alumni-table td:last-child {
    color: var(--navy);

    font-weight: 500;
}


/* ---------------------------------------------------------
   APPLICATION
--------------------------------------------------------- */

.university-application {
    background: #fff;
}

.application-card {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 50px;

    background: #f7f4ed;

    border: 1px solid rgba(184, 148, 76, 0.25);
}

.application-card h2 {
    color: var(--navy);

    margin: 8px 0 12px;
}

.application-card p {
    max-width: 700px;

    color: #626b74;

    line-height: 1.8;

    margin: 0;
}

.application-action {
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   ITU CONTACT
--------------------------------------------------------- */

.university-contact {
    background: var(--navy);

    color: #fff;
}

.university-contact .section-title {
    color: #fff;
}

.university-contact > .container > .row > .col-lg-6 > p {
    color: rgba(255, 255, 255, 0.72);

    line-height: 1.8;
}

.itu-contact-card {
    padding: 35px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.10);
}

.itu-contact-item + .itu-contact-item {
    margin-top: 30px;

    padding-top: 30px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.contact-label {
    display: block;

    color: var(--gold);

    font-size: 0.75rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    margin-bottom: 10px;
}

.itu-contact-item p {
    color: rgba(255, 255, 255, 0.80);

    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   UNIVERSITY MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .university-hero {
        min-height: 500px;
    }

    .course-list-grid {
        grid-template-columns: 1fr;
    }

    .course-list-grid > div {
        padding: 20px 0;
    }

    .course-list-grid > div + div {
        border-left: 0;
        border-top: 1px solid #e2e5e8;
    }

    .doctoral-card {
        padding: 45px;
    }

    .doctoral-mark {
        width: 140px;
        height: 140px;

        font-size: 2.3rem;
    }

    .application-card {
        align-items: flex-start;

        flex-direction: column;
    }

}


@media (max-width: 767.98px) {

    .university-hero {
        min-height: auto;
    }

    .university-hero-content {
        padding: 80px 0;
    }

    .university-hero h1 {
        font-size: 2.6rem;
    }

    .university-hero-subtitle {
        font-size: 1rem;
    }

    .university-highlight-card {
        padding: 30px;
    }

    .university-objective-feature {
        flex-direction: column;

        padding: 30px;
    }

    .university-note-card {
        flex-direction: column;

        padding: 30px;
    }

    .programme-card {
        padding: 30px;
    }

    .course-programme-header {
        align-items: flex-start;

        flex-direction: column;

        padding: 22px;
    }

    .university-table {
        min-width: 800px;
    }

    .course-list-grid {
        padding: 20px;
    }

    .doctoral-card {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }

    .doctoral-mark {
        width: 120px;
        height: 120px;

        font-size: 2rem;
    }

    .application-card {
        padding: 35px 25px;
    }

    .itu-contact-card {
        padding: 28px;
    }

}

/* =========================================
   UNIVERSITY HERO
========================================= */
/*
.university-hero-title {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.30),
        0 4px 18px rgba(0, 0, 0, 0.20);
}

.university-hero-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}
*/
/* =========================================
   UNIVERSITY HERO
========================================= */

.university-hero-title {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 1rem;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.35),
        0 4px 18px rgba(0, 0, 0, 0.25);
}

.university-hero-subtitle {
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
}

.university-hero .section-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

/* =========================================
   UNIVERSITY PROGRAMME NAVIGATION
========================================= */

.university-programme-nav {
    background: #f7f5f0;
    border-top: 1px solid rgba(20, 35, 60, 0.06);
    border-bottom: 1px solid rgba(20, 35, 60, 0.08);
    padding: 28px 0;
}

.university-programme-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.university-programme-nav-heading {
    flex: 0 0 auto;
}

.university-programme-nav-heading h2 {
    margin: 4px 0 0;
    color: var(--navy);
    font-size: 1.45rem;
}

.university-programme-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.university-programme-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 14px;

    color: var(--navy);
    background: transparent;

    border: 1px solid transparent;
    border-radius: 3px;

    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.university-programme-links a:hover {
    color: var(--navy);
    background: rgba(184, 148, 76, 0.10);
    border-color: rgba(184, 148, 76, 0.35);
    transform: translateY(-1px);
}

.programme-nav-number {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991.98px) {

    .university-programme-nav-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .university-programme-links {
        width: 100%;
        justify-content: flex-start;
    }

}


@media (max-width: 767.98px) {

    .university-programme-nav {
        padding: 24px 0;
    }

    .university-programme-nav-heading h2 {
        font-size: 1.3rem;
    }

    .university-programme-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
    }

    .university-programme-links a {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 12px;
    }

}


@media (max-width: 479.98px) {

    .university-programme-links {
        grid-template-columns: 1fr;
    }

}
