/* Sustainable Futures Page */

.sustainable-futures-page {
    margin-top: 85px !important;
}

/* HERO */

.sf-hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.sf-hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.sf-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.sf-hero-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.35);

    color: #fff;
    text-align: center;
    padding: 2rem;
}

.sf-hero-overlay__content {
    max-width: 900px;
}

.sf-hero-overlay h1 {
    margin: 0;
    font-size: 5rem;
    line-height: 1.05;
}

.sf-hero-overlay p {
    margin: 1rem 0 0;

    font-size: 1.1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

/* CONTENT */

.sf-content-section {
    padding: 80px 40px;
    background: #fff;
}

.sf-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* TWO COLUMN */

.sf-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
}

/* Vertical Divider */

.sf-two-column::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 50%;

    width: 1px;

    background-color: #d6c5c5;
}

/* SECTION DIVIDERS */

.sf-section {
    /* padding-bottom: 40px; */
    margin-bottom: 20px;
    border-bottom: 1px solid #d6c5c5;
}

.sf-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Statement Section */

.sf-section--statement {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.sf-section--statement h2 {
    margin-bottom: 0;
    line-height: 1.4;
}

/* TYPOGRAPHY */

.sf-column h2 {
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 10px 0;
    letter-spacing: 0.5px;
}

.sf-column p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.sf-column ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.sf-column ul li {
    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 12px;

    padding-left: 20px;
    position: relative;
}

.sf-column ul li::before {
    content: "•";

    position: absolute;
    left: 0;

    color: #000;
}

/* NOTES */

.sf-note,
.sf-note-small {
    font-style: italic;
    color: #666;
}

.sf-note {
    font-size: 14px;
    margin-top: 30px;
}

.sf-note-small {
    font-size: 13px;
    margin-top: 15px;
}

/* BENEFITS */

.sf-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    padding-left: 0 !important;
}

.sf-benefits-list li::before {
    display: none;
}

.sf-icon {
    font-size: 20px;
    width: 30px;
    flex-shrink: 0;
}

/* DATES */

.sf-dates {
    margin: 0 0 30px 0;
}

.sf-date-item {
    display: flex;
    justify-content: space-between;

    padding: 15px 0;

    border-bottom: 1px solid #e0e0e0;
}

.sf-date-label {
    font-size: 14px;
    color: #666;
}

.sf-date-value {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* CTA */

.sf-cta-section {
    margin-top: 40px;
    text-align: center;
}

.sf-cta-button {
    display: inline-flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #000;
    color: #fff;

    padding: 18px 50px;

    text-decoration: none;

    transition: background 0.3s ease;
}

.sf-cta-button:hover {
    background: #333;
}

.sf-cta-main {
    display: block;

    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1;
}

.sf-cta-sub {
    display: block;

    margin-top: 6px;

    font-size: 9px;
    line-height: 1;

    opacity: 0.7;
    letter-spacing: 1px;

    text-transform: uppercase;
}

/* RESPONSIVE */

@media (max-width: 968px) {

    .sf-two-column {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sf-two-column::after {
        display: none;
    }

    .sf-content-section {
        padding: 50px 20px;
    }
}

@media (max-width: 640px) {

    .sf-hero-section {
        height: auto;
    }

    .sf-hero-image img {
        height: auto;
        object-fit: initial;
    }

    .sf-column h2 {
        font-size: 24px;
    }

    .sf-cta-button {
        padding: 15px 40px;
    }

    .sf-cta-main {
        font-size: 12px;
    }
}