/* ===== Weekend Banner (top announcement bar) ===== */
.weekend-banner {
    background-color: #f2f2f2;
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}

.weekend-banner__container {
    max-width: 98.125rem;
    margin: 0 auto;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.weekend-banner__text {
    color: #f51e23;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Weekend Banner — Tablet */
@media (max-width: 768px) {
    .weekend-banner__container {
        padding: 6px 15px;
    }

    .weekend-banner__text {
        font-size: 13px;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
}

/* Weekend Banner — Mobile */
@media (max-width: 480px) {
    .weekend-banner__container {
        padding: 7px 15px;
    }

    .weekend-banner__text {
        font-size: 12px;
    }
}
/* ===== /Weekend Banner ===== */

/* Breadcrumbs */
.page-template-feedback #breadcrumbs {
    display: none;
}

/** Banner */
.feedback-banner {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #005da3;
    height: 585px;
}

/* Container */
.feedback-banner__container {
    display: flex;
    align-items: center;
    width: 100%;
}

/* Content */
.feedback-banner-content {
    max-width: 550px;
    color: #fff;
}

.feedback-banner-content__title {
    font-size: 40px;
    font-weight: bold;
}

.feedback-banner-content__text {
    margin-top: 20px;
    font-size: 18px;
}

/* Image */
.feedback-banner__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/** Start block */
.feedback-start-block {
    text-align: center;
    margin-top: 40px;
}

.feedback-start-block__title {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
}

.feedback-start-block__text {
    margin-top: 15px;
    font-size: 15px;
}

.feedback-start-block__text a {
    color: #005da3;
}

/** Cards */
.feedback-cards {
    margin-top: 80px;
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
}

.feedback-card {
    position: relative;
    width: 557px;
    padding: 32px;
    background: #F3F4F5;
}

.feedback-card:nth-child(2) {
    margin-left: 25px;
}

.feedback-card__top {
    display: flex;
    justify-content: space-between;
    height: 30px;
}

.feedback-card__img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-color: #005da3;
}

.feedback-card__title {
    font-size: 24px;
    font-weight: bold;
}

.feedback-card__content {
    margin-top: 15px;
    max-width: 385px;
    height: 170px;
    font-size: 15px;
}

.feedback-card__content li {
    margin-left: 20px;
    list-style: disc;
}

.feedback-card__button {
    width: auto;
    padding: 15px 45px;
    background-color: #005da3;
}


/*! Media */
/* Laptop */
@media (max-width: 1440px) {
    .feedback-banner__img {
        position: static;
        width: 100%;
    }
}

/* Laptop & tablet */
@media (max-width: 1100px) {
    /* Feedback cards */
    .feedback-cards {
        justify-content: space-between;
    }

    .feedback-card {
        width: calc(50% - 12.5px);
    }

    .feedback-card:nth-child(2) {
        margin-left: 0;
    }

    .feedback-card__top {
        flex-direction: column-reverse;

        height: auto;
    }
}

/* Phones */
@media (max-width: 512px) {
    /* Feedback cards */
    .feedback-cards {
        margin-top: 30px;
        margin-bottom: 40px;
        flex-direction: column;
    }

    .feedback-card {
        width: 100%;
        padding: 24px;
    }
    
    .feedback-card:nth-child(2) {
        margin-top: 15px;
    }

    .feedback-card__top {
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: center;
    }

    .feedback-card__title {
        margin-left: 25px;
        flex-shrink: 100;
        font-size: 18px;
    }

    .feedback-card__content {
        margin-top: 20px;
        height: auto;
    }

    .feedback-card__content li + li {
        margin-top: 20px;
    }

    .feedback-card__button {
        margin-top: 30px;
        width: 100%;
        font-size: 15px;
    }

    /* Banner */
    .feedback-banner {
        flex-direction: column-reverse;
        height: auto;
    }

    .feedback-banner__img {
        height: 272px;
    }

    .feedback-banner-content {
        padding: 35px 15px;
    }

    .feedback-banner-content__title {
        font-size: 24px;
    }

    .feedback-banner-content__text {
        font-size: 18px;
    }

    /* Start block */
    .feedback-start-block {
        text-align: left;
        margin-top: 20px;
    }

    .feedback-start-block__title {
        font-size: 24px;
    }

    .feedback-start-block__text {
        margin-top: 8px;
        font-size: 14px;
        font-weight: 500;
    }
}