.eq-carousel-container {
    width: 100%;
    font-family: inherit;
    padding: 20px 0;
    overflow: hidden;
}

.eq-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.eq-header-text {
    flex: 1;
    min-width: 280px;
}

.eq-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eq-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.eq-description {
    font-size: 16px;
    margin: 0;
}

.eq-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.eq-nav-arrows {
    display: flex;
    gap: 10px;
}

.eq-arrow-btn {
    width: 48px;
    height: 48px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.eq-arrow-btn svg {
    fill: #1A1A1A;
    transition: fill 0.25s ease;
}

.eq-btn-main {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 24px;
    border: 1px solid #1A1A1A;
    background: #FFFFFF;
    color: #1A1A1A;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    text-transform: uppercase;
}

.eq-btn-arrow {
    margin-left: 10px;
    font-size: 16px;
}

/* Card Styling */
.eq-swiper {
    width: 100%;
    overflow: visible;
}

.eq-slide-item {
    height: auto;
}

/* Force standard behavior on click-supporting element tag 'a' */
a.eq-card {
    text-decoration: none !important;
    color: inherit !important;
}

.eq-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-bottom: 3px solid #E53E3E;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.eq-card:hover {
    transform: translateY(-4px);
    border-color: #E53E3E;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

/* Icon box hover effects as requested in image */
.eq-card-icon-box {
    width: 50px;
    height: 50px;
    background: #F7FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.eq-card:hover .eq-card-icon-box {
    background-color: #E53E3E !important;
}

.eq-card-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.eq-card:hover .eq-card-icon {
    color: #FFFFFF !important;
}

.eq-card-icon svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.eq-card:hover .eq-card-icon svg {
    fill: #FFFFFF !important;
}

.eq-card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.eq-card-desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.eq-card-footer {
    border-top: 1px solid #EDF2F7;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.eq-card-meta {
    font-size: 13px;
}

.eq-card-action {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

@media (max-width: 767px) {
    .eq-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .eq-header-actions {
        width: 100%;
        justify-content: space-between;
    }
    .eq-title {
        font-size: 30px;
    }
}
