/* Banner/Hero Component Styles */

.banner {
    padding: 64px 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.banner__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Side - Main Content */
.banner__left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 937px;
}

.banner__image-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.banner__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner__text-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 64px;
}

.banner__title-wrapper {
    width: 368px;
}

.banner__title {
    font-size: 64px;
    line-height: 60px;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    margin: 0;
}

.banner__description-wrapper {
    flex: 1;
}

.banner__description {
    font-size: 24px;
    line-height: 32px;
    color: #4B5563;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

/* Right Side - Feature Cards */
.banner__features {
    width: 392px;
    height: 432px;
    border-radius: 32px;
    padding: 40px;
    background-color: #f6f6f6;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.banner__feature-card {
    width: 100%;
    height: 112px;
    padding: 16px;
    background-color: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    display: flex;
    align-items: start;
    gap: 16px;
}

.banner__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #FD025F 0%, #B2004B 100%);
}

.banner__feature-content {
    flex: 1;
}

.banner__feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.banner__feature-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.25;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
}

/* Responsive Design */

/* Large (lg) - max-width: 1350px */
@media (max-width: 1350px) {
    .banner {
        padding: 56px 32px;
    }

    .banner__wrapper {
        gap: 36px;
    }

    .banner__left {
        width: 100%;
        max-width: 900px;
        gap: 36px;
    }

    .banner__text-content {
        gap: 48px;
    }

    .banner__title {
        font-size: 56px;
        line-height: 54px;
    }

    .banner__description {
        font-size: 22px;
        line-height: 30px;
    }

    .banner__features {
        width: 100%;
        max-width: 400px;
        height: auto;
        padding: 36px;
    }
}

/* Tablet (md) - max-width: 1024px */
@media (max-width: 1024px) {
    .banner {
        padding: 48px 24px;
    }

    .banner__wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .banner__left {
        width: 100%;
        gap: 32px;
    }

    .banner__text-content {
        gap: 32px;
    }

    .banner__title-wrapper {
        width: auto;
        flex: 1;
    }

    .banner__title {
        font-size: 48px;
        line-height: 48px;
    }

    .banner__description {
        font-size: 20px;
        line-height: 28px;
    }

    .banner__features {
        width: 100%;
        height: auto;
        padding: 32px;
    }
}

/* Small Tablet (sm) - max-width: 768px */
@media (max-width: 768px) {
    .banner {
        padding: 32px 20px;
    }

    .banner__wrapper {
        gap: 24px;
    }

    .banner__left {
        gap: 24px;
    }

    .banner__text-content {
        flex-direction: column;
        gap: 20px;
    }

    .banner__title {
        font-size: 40px;
        line-height: 40px;
    }

    .banner__description {
        font-size: 18px;
        line-height: 26px;
    }

    .banner__features {
        padding: 24px;
        gap: 12px;
    }

    .banner__feature-card {
        height: auto;
        min-height: 100px;
    }
}

/* Mobile (xs) - max-width: 400px */
@media (max-width: 400px) {
    .banner {
        padding: 20px 12px;
    }

    .banner__wrapper {
        gap: 16px;
    }

    .banner__left {
        gap: 16px;
    }

    .banner__image-wrapper {
        border-radius: 12px;
    }

    .banner__text-content {
        gap: 12px;
    }

    .banner__title {
        font-size: 28px;
        line-height: 28px;
    }

    .banner__description {
        font-size: 14px;
        line-height: 20px;
    }

    .banner__features {
        padding: 16px;
        border-radius: 12px;
        gap: 8px;
    }

    .banner__feature-card {
        padding: 10px;
        min-height: 70px;
    }

    .banner__feature-icon {
        width: 28px;
        height: 28px;
    }

    .banner__feature-title {
        font-size: 13px;
    }

    .banner__feature-description {
        font-size: 11px;
    }
}