/* ==========================================================
   General Page
   ========================================================== */

body {

    margin: 0;

    padding: 70px 40px;

    font-family: "Inter", sans-serif;

    font-size: 1rem;

    line-height: 1.75;

    color: #2b2b2b;

    background: white;

}

.container {

    max-width: 960px;

    margin: 0 auto;

}


/* ==========================================================
   Hero
   ========================================================== */

.hero {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 70px;

    margin-bottom: 100px;

}

.hero-text {

    flex: 1;

}

.eyebrow {

    text-transform: uppercase;

    letter-spacing: 0.22em;

    font-size: 0.75rem;

    font-weight: 700;

    color: #888;

    margin-bottom: 0.8rem;

}

.hero h1 {

    font-size: 3.6rem;

    font-weight: 700;

    line-height: 1.05;

    margin: 0;

}

.hero h2 {

    font-size: 1.45rem;

    font-weight: 500;

    color: #555;

    margin: 0.7rem 0 0.5rem 0;

}

.subtitle {

    font-size: 1.1rem;

    color: #777;

    margin-bottom: 2rem;

}

.links {

    display: flex;

    gap: 24px;

    flex-wrap: wrap;

}

.links a {

    text-decoration: none;

    font-weight: 500;

    color: #005bbb;

    transition: color 0.2s ease;

}

.links a:hover {

    color: #003d82;

}


/* ==========================================================
   Profile Photo
   ========================================================== */

.hero-image img {

    width: 260px;

    border-radius: 14px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.10);

}


/* ==========================================================
   Main Sections
   ========================================================== */

section {

    margin-top: 80px;

}

section h2 {

    font-size: 2rem;

    font-weight: 600;

    margin-bottom: 20px;

}

section p {

    max-width: 720px;

}


/* ==========================================================
   Lists
   ========================================================== */

ul {

    padding-left: 22px;

}

li {

    margin-bottom: 12px;

}


/* ==========================================================
   Links
   ========================================================== */

a {

    color: #005bbb;

}

a:hover {

    text-decoration: underline;

}


/* ==========================================================
   Miscellaneous
   ========================================================== */

hr {

    display: none;

}