/* ============================================
   What's Included Section - CSS
   ============================================ */

/* Included Grid */
.whats-included-section .included__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem;
}

/* Included Item */
.whats-included-section .included__item {
    display: flex;
    flex-direction: column;
}

/* Icon Box */
.whats-included-section .included__icon {
    width: 6.4rem;
    height: 6.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #272727;
    border-radius: 1.6rem;
    margin-bottom: 2.4rem;
    padding: 1rem;
}

.whats-included-section .included__icon img {
    max-width: 3.6rem;
    max-height: 3.6rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Item Label */
.whats-included-section .included__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-size: 1.6rem;
    font-weight: 600;
    padding: 0.4rem 1.6rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    width: fit-content;
}

/* Item Title */
.whats-included-section .included__title {
    margin-bottom: 1rem;
}

/* Item Description */
.whats-included-section .included__description {
    line-height: 1.7;
}

/* ============================================
   What's Included Section - Responsive CSS
   ============================================ */

@media (max-width: 1599px) {
    .whats-included-section .included__grid {
        gap: 2.4rem;
    }
}

@media (max-width: 1439px) {
    .whats-included-section .included__icon {
        width: 5rem;
        height: 5rem;
    }
    
}

@media (max-width: 1199px) {
    .whats-included-section .included__grid {
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .whats-included-section .included__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.2rem;
    }
}

@media (max-width: 767px) {
    .whats-included-section .included__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.4rem;
    }
    .whats-included-section .included__icon {
        width: 4.8rem;
        height: 4.8rem;
        margin-bottom: 1.2rem;
    }
    .whats-included-section .included__label {
        font-size: 1.4rem;
        padding: 0.3rem 1rem;
        margin-bottom: 1.2rem;
    }
    .whats-included-section .included__title {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 576px) {
    .whats-included-section .included__grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
}

