.event-quotes {
    padding: 80px 20px;
    background-color: #ffffff;
}

.event-quotes__container {
    max-width: 1200px;
    margin: 0 auto;
}

.event-quotes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.event-quotes__card {
    border-radius: 15px;
    padding: 40px 50px;
    position: relative;
    min-height: 200px;
    display: flex;
    transition: all 0.3s ease;
    box-shadow: 0px 5px 25px 0px #7A95A440;
    gap: 30px;
    background: linear-gradient(180deg, #004EA8 0%, #0C2340 100%);
    justify-content: space-between;
}

.event-quotes__icon {
    width: 58px;
    height: 50px;
    display: block;
    position: relative;
}

.event-quotes__icon svg {
    width: 100%;
    height: 100%;
}

.event-quotes__text {
    color: #ffffff;
    margin: 0;
    font-family: Univers LT Pro;
    font-weight: 300;
    font-size: 26px;
    line-height: 40px;
    letter-spacing: 0px;
    max-width: 380px;
    width: 100%;
}

@media (max-width: 768px) {
    .event-quotes {
        padding: 2rem 1rem;
    }

    .event-quotes__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-quotes__card {
        min-height: 180px;
        padding: 1.5rem;
    }

    .event-quotes__text {
        font-size: 1rem;
    }
}