:root {
    --black: #000000;
    --gold: #deae10;
    --soft-cream: #d9cca7;
    --white: #ffffff;

    --sidebar-width: clamp(280px, 18vw, 360px);
    --page-padding: clamp(32px, 5vw, 96px);
}

/* ========================================
   GLOBAL
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--black);
    color: var(--soft-cream);
    font-family:
        Baskerville,
        "Baskerville Old Face",
        "Palatino Linotype",
        Palatino,
        "Times New Roman",
        serif;
}

/* ========================================
   PAGE STRUCTURE
======================================== */

.page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
}

main {
    min-width: 0;
    padding: var(--page-padding);
    padding-top: clamp(110px, 16vh, 175px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* ========================================
   SIDEBAR
======================================== */

.sidebar {
    min-height: 100vh;
    height: 100vh;
    position: sticky;
    top: 0;
    align-self: start;
    overflow-y: auto;
    padding:
        clamp(36px, 4vw, 58px)
        clamp(26px, 3vw, 42px);
    border-right: 1px solid var(--gold);
    background: var(--black);
}

.sidebar h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(34px, 2.7vw, 46px);
    line-height: 1.05;
    font-weight: 500;
}

.credentials,
.title {
    color: var(--white);
}

.credentials {
    margin-top: 8px;
    font-size: clamp(17px, 1.2vw, 21px);
    letter-spacing: 0.08em;
}

.title {
    margin-top: 24px;
    font-size: clamp(18px, 1.3vw, 22px);
    line-height: 1.4;
}

nav {
    margin-top: clamp(40px, 5vh, 58px);
    display: grid;
    gap: clamp(18px, 2vh, 24px);
    transition: color 0.25s ease;
}

nav a {
    color: var(--gold);
    text-decoration: none;
    font-size: clamp(18px, 1.3vw, 22px);
    line-height: 1.2;
}
nav a:hover {
    color: var(--white);
    text-shadow: 0 0 6px rgba(222,174,16,0.20);
}
.credential-detail {
    margin-top: 3px;
    margin-bottom: 14px;

    font-size: 0.95rem;
    line-height: 1.35;

    color: rgba(217, 204, 167, 0.72);

    letter-spacing: 0.02em;
}
/* ========================================
   HERO
======================================== */

.hero {
    width: min(100%, 1240px);
}

.eyebrow {
    margin: 0;
    color: var(--gold);
    font-size: clamp(18px, 1.45vw, 24px);
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/*
   This is deliberately scoped to the hero.
   It will not affect later section headings.
*/

.hero h2 {
    margin: clamp(24px, 2.4vw, 34px) 0 0;
    max-width: 1080px;
    color: var(--white);
    font-size: clamp(36px, 3vw, 50px);
    line-height: 1.12;
    font-weight: 500;
    letter-spacing: -0.015em;
}

.hero h2 span {
    color: var(--gold);
    text-shadow:
        0 0 2px rgba(222, 174, 16, 0.18),
        0 0 5px rgba(222, 174, 16, 0.08);
}

.intro {
    max-width: 980px;
    margin-top: clamp(28px, 2.7vw, 40px);
    color: var(--soft-cream);
    font-size: clamp(21px, 1.7vw, 28px);
    line-height: 1.5;
}

/* ========================================
   SECTION DIVIDER
======================================== */

.section-divider {
    width: min(100%, 1240px);
    margin:
        clamp(70px, 9vw, 120px)
        0
        clamp(54px, 7vw, 90px);
    display: flex;
    align-items: center;
}

.section-divider span {
    display: block;
    width: 100%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            rgba(222, 174, 16, 0),
            rgba(222, 174, 16, 0.75) 18%,
            rgba(222, 174, 16, 0.75) 82%,
            rgba(222, 174, 16, 0)
        );
    box-shadow: 0 0 8px rgba(222, 174, 16, 0.10);
}

/* ========================================
   TECHNICAL LEADERSHIP
======================================== */

.technical-leadership {
    width: min(100%, 1240px);
    padding-bottom: 0;
}

.section-heading {
    width: 100%;
    max-width: 1100px;
}

.section-eyebrow {
    margin: 0 0 clamp(26px, 2.5vw, 36px);
    color: var(--gold);
    font-size: clamp(18px, 1.35vw, 23px);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.section-divider-tight {
    margin-top: clamp(30px, 4vw, 50px);
}
.section-heading h2 {
    margin: 0;
    max-width: 1000px;
    color: var(--white);
    font-size: clamp(27px, 2.25vw, 38px);
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: -0.01em;
}

.section-heading h2 span {
    display: inline;
    color: var(--gold);
    text-shadow:
        0 0 2px rgba(222, 174, 16, 0.18),
        0 0 5px rgba(222, 174, 16, 0.08);
}

.section-intro {
    max-width: 920px;
    margin: clamp(28px, 2.7vw, 40px) 0 0;
    color: var(--soft-cream);
    font-size: clamp(20px, 1.55vw, 26px);
    line-height: 1.58;
}

/* ========================================
   LEADERSHIP CARDS
======================================== */

.leadership-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: clamp(52px, 6vw, 82px);
}

.leadership-card {
    min-height: 290px;
    padding: 32px;
    border: 1px solid rgba(222, 174, 16, 0.24);
    background:
        linear-gradient(
            145deg,
            rgba(222, 174, 16, 0.055),
            rgba(255, 255, 255, 0.012)
        );
}

.leadership-card h3 {
    margin: 0 0 18px;
    color: var(--soft-cream);
    font-size: clamp(1.25rem, 1.35vw, 1.5rem);
    font-weight: 500;
    line-height: 1.3;
}

.leadership-card p:last-child {
    margin: 0;
    color: rgba(217, 204, 167, 0.76);
    font-size: clamp(1rem, 1vw, 1.1rem);
    line-height: 1.7;
}
/* --------------------------------------------------
   SELECTED CONTRIBUTIONS
-------------------------------------------------- */

.selected-contributions {
    width: min(100%, 1240px);
    padding-bottom: clamp(80px, 10vw, 140px);
}

.contributions-heading {
    max-width: 900px;
    margin-bottom: clamp(54px, 7vw, 90px);
}

.contributions-heading h2 {
    margin: 14px 0 0;
    max-width: 860px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 1.85vw, 32px);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.015em;

    color: var(--soft-cream);
}





.contributions-list {
    width: min(100%, 900px);
    display: grid;
    gap: 0;
}

.contribution {
    display: block;

    padding:
        clamp(42px, 5vw, 64px)
        0
        clamp(46px, 5.5vw, 68px);

    border-top: 1px solid rgba(222, 174, 16, 0.32);
}

.contribution-domain {
    margin: 0 0 18px;

    color: var(--gold);

    font-size: clamp(15px, 1vw, 17px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contribution h3 {
    max-width: 800px;
    margin: 0 0 22px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 1.9vw, 34px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.01em;

    color: var(--white);
}

.contribution-summary {
    max-width: 820px;
    margin: 0;

    font-size: clamp(18px, 1.25vw, 21px);
    font-weight: 400;
    line-height: 1.6;

    color: var(--soft-cream);
}

.contribution-detail {
    max-width: 820px;
    margin: 20px 0 0;

    font-size: clamp(17px, 1.05vw, 18px);
    font-weight: 400;
    line-height: 1.65;

    color: var(--soft-cream);
}

.contribution-link {
    display: inline-block;

    margin-top: 26px;
    padding-bottom: 3px;

    border-bottom: 1px solid rgba(222,174,16,0.35);

    color: rgba(222,174,16,0.82);

    text-decoration: none;

    font-size: clamp(13px, 0.82vw, 15px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.contribution-link::after {
    content: "  →";
}

.contribution-link:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.45);
    transform: translateX(3px);
}








.homepage-close {
    width: min(100%, 900px);
    padding:
        clamp(70px, 9vw, 120px)
        0
        clamp(60px, 8vw, 100px);
}

.homepage-close-statement {
    margin: 0 0 28px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 1.55vw, 26px);
    line-height: 1.55;
    color: var(--soft-cream);
}

.homepage-close-statement strong {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--white);
}

.homepage-email {
    font-size: clamp(0.96rem, 0.9vw, 1.06rem);
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--gold);
    transition: color 0.25s ease;
}

.homepage-email:hover {
    color: var(--white);
}

nav a {
    position: relative;
}

nav a.active {
    color: var(--white);
}

nav a.active::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    width: 9px;
    height: 1px;
    background: var(--gold);
}





/* ========================================
   TECHNICAL CONTRIBUTIONS PAGE INTRO
   Interior-page override
======================================== */

.technical-contributions-page main {
    padding-top: clamp(76px, 10vh, 108px);
    padding-bottom: clamp(70px, 8vw, 110px);
}

.technical-contributions-page .hero {
    width: min(100%, 1100px);
}

.technical-contributions-page .hero .eyebrow {
    margin: 0;

    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.13em;

    color: var(--gold);
}

.technical-contributions-page .hero h2 {
    max-width: 900px;
    margin: clamp(20px, 1.8vw, 26px) 0 0;

    font-size: clamp(30px, 2.25vw, 38px);
    line-height: 1.16;
    font-weight: 400;
    letter-spacing: -0.01em;

    color: var(--white);
}

.technical-contributions-page .hero .intro {
    max-width: 850px;
    margin-top: clamp(22px, 1.8vw, 28px);

    font-size: clamp(18px, 1.25vw, 21px);
    line-height: 1.55;

    color: var(--soft-cream);
}

.technical-contributions-page .section-divider {
    width: min(100%, 1100px);

    margin:
        clamp(38px, 4vw, 54px)
        0
        clamp(38px, 4vw, 54px);
}
/*=================================
Technical Contributions
==================================*/

.contributions {
    width: min(100%, 1100px);
    display: grid;
    gap: clamp(36px, 5vw, 64px);
}


/* --------------------------------
   Main contribution panels
--------------------------------- */

.story-panel {
    position: relative;
    padding: clamp(34px, 4vw, 52px);

    background:
        linear-gradient(
            145deg,
            #eee7d3 0%,
            #d8cfb7 48%,
            #eee7d3 100%
        );

    color: #171717;
    border: 2px solid var(--gold);

    box-shadow:
        8px 8px 0 rgba(222, 174, 16, 0.16),
        0 18px 50px rgba(0, 0, 0, 0.28);
}

.story-panel::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(23, 23, 23, 0.16);
    pointer-events: none;
}


/* --------------------------------
   Contribution heading hierarchy
--------------------------------- */

.story-eyebrow {
    margin: 0 0 15px;

    font-size: clamp(15px, 1vw, 17px);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.14em;

    color: #51431c;
}

.story-panel h2 {
    max-width: 850px;
    margin: 0 0 18px;

    font-size: clamp(28px, 1.9vw, 34px);
    line-height: 1.14;
    font-weight: 400;

    color: #171717;
}

.story-summary {
    max-width: 840px;
    margin: 0;

    font-size: clamp(19px, 1.25vw, 21px);
    line-height: 1.6;

    color: #2f2d28;
}


/* --------------------------------
   Full case-study narrative
--------------------------------- */

.case-study {
    max-width: 860px;
    margin-top: 26px;
}

.case-study-section {
    margin-top: 22px;
}

.case-study-section:first-child {
    margin-top: 0;
}

.case-study-section h3 {
    margin: 0 0 7px;

    font-size: clamp(17px, 1.05vw, 19px);
    line-height: 1.25;
    font-weight: 700;

    color: #211f1b;
}

.case-study-section p {
    max-width: 850px;
    margin: 0;

    font-size: clamp(17px, 1.05vw, 18px);
    line-height: 1.58;

    color: #302e29;
}


/* --------------------------------
   Grouped contribution examples
--------------------------------- */

.story-examples {
    display: grid;
    gap: 28px;

    margin-top: 32px;
    padding-top: 28px;

    border-top: 1px solid rgba(23, 23, 23, 0.22);
}

.story-example h3 {
    margin: 0 0 9px;

    font-size: clamp(21px, 1.35vw, 25px);
    line-height: 1.2;
    font-weight: 600;

    color: #171717;
}

.story-example p {
    max-width: 840px;
    margin: 0;

    font-size: clamp(17px, 1.05vw, 18px);
    line-height: 1.58;

    color: #35322c;
}


/* --------------------------------
   Optional contribution link
--------------------------------- */

.story-link {
    display: inline-block;

    margin-top: 28px;
    padding-bottom: 4px;

    border-bottom: 1px solid #8a6a13;

    color: #5f4a12;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

.story-link:hover {
    color: #171717;
    border-color: #171717;
}

/* =========================================================
   SYSTEMS & DIGITAL ENGINEERING — CONTENT SECTIONS
   ========================================================= */
.technical-contributions-page .hero .eyebrow {
    margin: 0;

    font-size: clamp(18px, 1.35vw, 23px);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0.12em;

    color: var(--gold);
}

.technical-contributions-page .content-section {
    width: min(100%, 1100px);
    padding: 34px 0 48px;
}

.technical-contributions-page .content-section .section-heading {
    width: 100%;
    max-width: 900px;
}

.technical-contributions-page .content-section .section-heading h3 {
    max-width: 850px;
    margin: 20px 0 24px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(27px, 1.9vw, 34px);
    font-weight: 400;
    line-height: 1.22;
    letter-spacing: -0.01em;

    color: var(--white);
}

.technical-contributions-page .content-section .section-copy {
    max-width: 850px;
}

.technical-contributions-page .content-section .section-copy p {
    margin: 0 0 20px;

    font-size: clamp(18px, 1.25vw, 21px);
    font-weight: 400;
    line-height: 1.65;

    color: var(--soft-cream);
}

.technical-contributions-page .content-section .section-copy p:last-child {
    margin-bottom: 0;
}

.publication-link {
    display: inline-block;

    margin-top: 32px;
    padding-bottom: 4px;

    border-bottom: 1px solid rgba(222,174,16,0.45);

    color: var(--gold);
    text-decoration: none;

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.publication-link:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.55);
}



/* ========================================
   ORGANIZATIONAL ADOPTION — TRAINING VIDEO
======================================== */

#organizational-adoption .training-video {
    width: min(100%, 950px);
    margin-top: clamp(34px, 4vw, 48px);
}

#organizational-adoption .training-video-intro {
    max-width: 850px;
    margin-bottom: 24px;
}

#organizational-adoption .training-video-label {
    margin: 0 0 12px;

    color: var(--gold);
    font-size: clamp(18px, 1.25vw, 21px);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

#organizational-adoption .training-video-summary {
    max-width: 850px;
    margin: 0;

     margin: 0 0 20px;

    font-size: clamp(18px, 1.25vw, 21px);
    font-weight: 400;
    line-height: 1.65;

    color: var(--soft-cream);
}

#organizational-adoption .training-video-player {
    width: 100%;
    border: 1px solid rgba(222, 174, 16, 0.32);
    background: var(--black);
}

#organizational-adoption .training-video-player video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: var(--black);
}

#organizational-adoption
.training-video-intro
p.training-video-summary {
    max-width: 850px;
    margin: 0;

    font-size: clamp(18px, 1.25vw, 21px) !important;
    font-weight: 400;
    line-height: 1.65;

    color: var(--soft-cream);
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 980px) {

    /* ---------------------------------
       Overall page structure
    ---------------------------------- */

    .page {
        display: block;
    }

    .sidebar {
        min-height: auto;
        height: auto;
        position: static;
        overflow: visible;

        padding: 30px;

        border-right: 0;
        border-bottom: 1px solid var(--gold);
    }

    nav {
        margin-top: 28px;

        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 24px;
    }

    main {
        min-height: auto;

        padding:
            clamp(48px, 8vw, 80px)
            30px;

        align-items: flex-start;
    }


    /* ---------------------------------
       General page sections
    ---------------------------------- */

    .hero,
    .technical-leadership,
    .selected-contributions,
    .contributions {
        width: 100%;
    }

    .section-divider {
        width: 100%;
    }


    /* ---------------------------------
       Technical Contributions page
    ---------------------------------- */

    .technical-contributions-page main {
        padding:
            clamp(46px, 7vw, 68px)
            30px
            clamp(64px, 8vw, 90px);
    }

    .technical-contributions-page .hero {
        width: 100%;
    }

    .technical-contributions-page .hero h2 {
        max-width: 820px;

        font-size: clamp(30px, 4.4vw, 38px);
        line-height: 1.16;
    }

    .technical-contributions-page .hero .intro {
        max-width: 800px;

        font-size: clamp(18px, 2.4vw, 21px);
        line-height: 1.55;
    }

    .technical-contributions-page .section-divider {
        width: 100%;

        margin:
            clamp(36px, 5vw, 48px)
            0;
    }

    .contributions {
        gap: clamp(34px, 5vw, 52px);
    }

    .story-panel {
        padding: clamp(34px, 5vw, 48px);
    }

    .story-panel h2 {
        font-size: clamp(28px, 3.7vw, 34px);
    }

    .story-summary {
        font-size: clamp(18px, 2.25vw, 21px);
    }

    .case-study-section h3 {
        font-size: clamp(17px, 2vw, 19px);
    }

    .case-study-section p,
    .story-example p {
        font-size: clamp(17px, 1.9vw, 18px);
    }


    /* ---------------------------------
       Technical leadership cards
    ---------------------------------- */

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

    .leadership-card {
        min-height: auto;
    }

    .card-number {
        margin-bottom: 28px;
    }


    /* ---------------------------------
       Homepage selected contributions
    ---------------------------------- */

    .contribution {
        display: block;

        padding:
            clamp(38px, 6vw, 56px)
            0;
    }

    .contribution-domain {
        margin: 0 0 12px;
    }

    .contribution h3 {
        margin: 0 0 22px;
    }

    .contribution-summary {
        margin: 0 0 16px;
    }

    .contribution-detail {
        margin: 0 0 22px;
    }

    .contribution-link {
        margin-top: 0;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 680px) {

    /* ---------------------------------
       Sidebar and navigation
    ---------------------------------- */

    .sidebar {
        padding: 26px 22px;
    }

    .sidebar h1 {
        font-size: clamp(32px, 8vw, 40px);
    }

    .credentials {
        font-size: 16px;
    }

    nav {
        grid-template-columns: 1fr 1fr;
        gap: 14px 18px;
    }

    nav a {
        font-size: 17px;
    }


    /* ---------------------------------
       Main content
    ---------------------------------- */

    main {
        padding:
            46px
            22px
            60px;
    }

    .eyebrow,
    .section-eyebrow {
        letter-spacing: 0.08em;
    }

    .hero h2 {
        font-size: clamp(36px, 10vw, 48px);
    }

    .intro {
        font-size: clamp(20px, 5.5vw, 24px);
    }

    .section-heading h2 {
        font-size: clamp(28px, 8vw, 38px);
    }

    .section-intro {
        font-size: clamp(19px, 5vw, 23px);
    }


    /* ---------------------------------
       Technical Contributions page intro
    ---------------------------------- */

    .technical-contributions-page main {
        padding:
            42px
            22px
            64px;
    }

    .technical-contributions-page .hero .eyebrow {
        font-size: 14px;
        line-height: 1.3;
        letter-spacing: 0.10em;
    }

    .technical-contributions-page .hero h2 {
        margin-top: 18px;

        font-size: clamp(28px, 7.5vw, 34px);
        line-height: 1.18;
    }

    .technical-contributions-page .hero .intro {
        margin-top: 20px;

        font-size: clamp(18px, 4.6vw, 20px);
        line-height: 1.52;
    }

    .technical-contributions-page .section-divider {
        margin:
            32px
            0
            36px;
    }


    /* ---------------------------------
       Technical contribution panels
    ---------------------------------- */

    .contributions {
        gap: 34px;
    }

    .story-panel {
        padding:
            32px
            28px;
    }

    .story-panel::before {
        inset: 8px;
    }

    .story-eyebrow {
        margin-bottom: 13px;

        font-size: 14px;
        line-height: 1.3;
        letter-spacing: 0.11em;
    }

    .story-panel h2 {
        margin-bottom: 16px;

        font-size: clamp(26px, 6.7vw, 30px);
        line-height: 1.16;
    }

    .story-summary {
        font-size: 18px;
        line-height: 1.55;
    }

    .case-study {
        margin-top: 24px;
    }

    .case-study-section {
        margin-top: 21px;
    }

    .case-study-section h3 {
        margin-bottom: 7px;

        font-size: 17px;
        line-height: 1.25;
    }

    .case-study-section p {
        font-size: 17px;
        line-height: 1.56;
    }

    .story-examples {
        gap: 26px;

        margin-top: 28px;
        padding-top: 26px;
    }

    .story-example h3 {
        font-size: clamp(21px, 5.5vw, 24px);
    }

    .story-example p {
        font-size: 17px;
        line-height: 1.56;
    }


    /* ---------------------------------
       Other cards
    ---------------------------------- */

    .leadership-card {
        padding: 26px;
    }
}


/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 440px) {
    nav {
        grid-template-columns: 1fr;
    }
    .title br {
        display: none;
    }
    .hero h2 {
        font-size: clamp(34px, 10vw, 44px);
    }

    /* ---------------------------------
       Technical Contributions page
    ---------------------------------- */
    .technical-contributions-page main {
        padding:
            38px
            18px
            56px;
    }

    .technical-contributions-page .hero h2 {
        font-size: clamp(27px, 8vw, 32px);
    }

    .technical-contributions-page .hero .intro {
        font-size: 18px;
    }

    .story-panel {
        padding:
            30px
            24px;
    }

    .story-eyebrow {
        font-size: 13px;
    }

    .story-panel h2 {
        font-size: clamp(25px, 7.5vw, 29px);
    }

    .story-summary,
    .case-study-section p,
    .story-example p {
        font-size: 16.5px;
    }

    .case-study-section h3 {
        font-size: 17px;
    }
}