/* ============================================
   Why Choose EarnEdits Section - CSS
   ============================================ */

/* Grid */
.why-choose-earnedits-section .choose__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
}

/* Item */
.why-choose-earnedits-section .choose__item {
    display: flex;
    flex-direction: column;
}

/* Image */
.why-choose-earnedits-section .choose__image {
    position: relative;
    border-radius: 1.6rem;
    overflow: hidden;
    margin-bottom: 2.4rem;
}

.why-choose-earnedits-section .choose__image::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.why-choose-earnedits-section .choose__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title */
.why-choose-earnedits-section .choose__title {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Description */
.why-choose-earnedits-section .choose__description {
    line-height: 1.7;
}

/* ============================================
   Why Choose EarnEdits Section - Responsive CSS
   ============================================ */

@media (max-width: 1599px) {
    .why-choose-earnedits-section .choose__grid {
        gap: 2.4rem;
    }
}

@media (max-width: 1439px) {
    .why-choose-earnedits-section .choose__grid {
        gap: 2rem;
    }
    .why-choose-earnedits-section .choose__image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 1199px) {
    .why-choose-earnedits-section .choose__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.2rem;
    }
}

@media (max-width: 991px) {
    .why-choose-earnedits-section .choose__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.4rem;
    }
}

@media (max-width: 767px) {
    .why-choose-earnedits-section .choose__grid {
        gap: 2rem;
    }
    .why-choose-earnedits-section .choose__image {
        margin-bottom: 1.6rem;
        border-radius: 1.2rem;
    }
    .why-choose-earnedits-section .choose__title {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 576px) {
    .why-choose-earnedits-section .choose__grid {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
}

