/* =====================================================
   FRONT PAGE COMPONENT STYLES
   ===================================================== */

/* -------------------------------------------------------
   BANNER
   ------------------------------------------------------- */
.section-banner {
    margin-top: 0;
}

.banner-svg {
    width: 100%;
    height: auto;
    display: block;
}

.banner-svg--mobile {
    display: none;
}

/* -------------------------------------------------------
   PRIORITIES SECTION
   ------------------------------------------------------- */
.priorities-header {
    text-align: center;
    margin-bottom: 40px;
}

.priorities-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--basic-color);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.priorities-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #555;
    margin: 0;
    line-height: 1.4;
}

.priorities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.priority-card {
    flex: 1;
    min-width: 270px;
    max-width: 360px;
    background: #fff;
    border: 1px solid #d0d4f0;
    border-radius: 14px;
    padding: 36px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.priority-icon {
    width: 48px;
    height: 48px;
    background: #eef0fb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--basic-color);
    flex-shrink: 0;
}

.priority-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0d1240;
    margin: 0 0 12px 0;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.priority-card-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 18px 0;
    flex: 1;
}

.priority-card-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--basic-color);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: gap 0.2s ease;
}

.priority-card-link:hover {
    gap: 10px;
}

/* -------------------------------------------------------
   MAP SECTION
   ------------------------------------------------------- */
.flex-map {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
    align-items: center;
    flex-wrap: wrap;
}

.flex-map .text {
    width: 49%;
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.flex-map .text p {
    line-height: 30px;
    font-size: 20px;
    color: #000;
    font-weight: 400;
}

.flex-map .right-map {
    width: 49%;
}

.flex-map .right-map img {
    width: 100%;
}

/* -------------------------------------------------------
   ENDORSED / SUPPORTERS SECTION
   ------------------------------------------------------- */
.endorsed_new_row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 15px;
}

.endorsed_new_row .endorsed_block {
    width: calc(25% - 15px);
    margin-top: 15px;
    box-sizing: border-box;
    margin-right: 15px;
}

.endorsed_new_row .endorsed_block img {
    border-radius: 100%;
}

.endorsed_nav_buttons .button_theme {
    font-size: 14px;
    padding: 10px;
    font-weight: 500;
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
    width: 100px;
}

.endorsed_nav_buttons .button_theme.is-active {
    background: var(--basic-color);
    color: #fff;
}

.endorsed_nav_buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
    letter-spacing: 0.5px;
}

/* -------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------- */
@media (max-width: 767px) {
    .banner-svg--desktop {
        display: none;
    }

    .banner-svg--mobile {
        display: block;
    }

    .main_info_block {
        flex-wrap: wrap;
    }

    .main_info_block .quote_image {
        width: 100%;
    }

    .main_info_block_text {
        width: 100%;
        margin-top: 16px;
    }

    .flex-map .right-map,
    .flex-map .text {
        width: 100%;
    }

    .right-map {
        margin-top: 30px;
    }

    .endorsed_new_row .endorsed_block {
        width: 100%;
    }
}
