/**
 * Section heading typography only — does NOT touch page-nav or breadcrumb.
 */
.title-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
}

.page-title,
h2.page-title {
    font-size: 2.8rem;
    color: #1A5A6A;
    text-align: left;
    flex-shrink: 0;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0;
}

.title-line {
    flex-grow: 1;
    min-width: 48px;
    height: 2px;
    background: linear-gradient(to right, #abde99, #f0f0f0);
    border-radius: 2px;
}

/* Same title scale in every anchor section */
.green-financing-section .page-title,
.faq-section .page-title,
.contact-section .page-title,
.logo-slider-section .page-title {
    font-size: 2.8rem;
    color: #1A5A6A;
    text-align: left;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .page-title,
    h2.page-title {
        font-size: 2rem;
    }

    .title-line {
        width: 100%;
        flex: none;
        min-width: 0;
    }
}
