@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Oswald:wght@200..700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');



/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Work Sans", sans-serif;
}

.investors-hero {
    width: 100%;
    height: 50vh;
    background-image: url(../images/operations-banner-aerial-bright.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 15px;
}

/* Sub Nav */
.subnav {
    background: #f8f9fb;
    padding: 45px 0;
    border-bottom: 1px solid #e5e7eb;
}

.subnav-title {
    font-size: 41px;
    font-weight: 500;
    margin-bottom: 15px;
}

.subnav-title a {
    text-decoration: none;
    color: #111;
    transition: opacity 0.3s;
}

.subnav-title a:hover {
    opacity: 0.7;
}

.subnav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.subnav-links li a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.subnav-links li a.active {
    color: #11181C;
}

/* Hover effect */
.subnav-links li a:hover {
    color: #11181C;
}

@media (max-width: 768px) {

    .subnav {
        padding: 20px 0;
    }

    .subnav-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .subnav-links {
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 5px;
    }

    .subnav-links::-webkit-scrollbar {
        display: none;
    }

    .subnav-links li a {
        font-size: 14px;
    }
}

.text-block {
    padding: 60px 0;
    background: #fff;
}

.text-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Left heading */
.text-left h2 {
    font-family: "Working Sans", sans-serif;
    font-size: 29px;
    font-weight: 600;
    color: #11181C;
}

/* Right content */
.text-right p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: #111;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .text-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .text-left h2 {
        font-size: 22px;
    }

    .text-right p {
        font-size: 15px;
    }
}