/**
 * Why Choose Section Block Styles
 *
 * @package PNK_Group
 */

.why-choose-section {
    background-color: var(--bg-color, #f9fafb);
    padding: 5rem 0;
}

.why-choose-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 1024px) {
    .why-choose-section .container {
        padding: 0 var(--spacing-sm) !important;
        width: 100%;
    }
}

.why-choose-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-choose-section .section-header h2 {
    font-size: 2.25rem;
    color: var(--title-color, #2d3748);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-choose-section .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-choose-section .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .why-choose-section .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-choose-section .benefit-card {
    background-color: #ffffff;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    transition: box-shadow 0.3s ease;
}

.why-choose-section .benefit-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.why-choose-section .benefit-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--brand-primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 0;
}

.why-choose-section .benefit-icon i {
    color: #ffffff;
    font-size: 1.25rem;
}

.why-choose-section .benefit-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-choose-section .benefit-card p {
    color: #6b7280;
    line-height: 1.75;
    font-size: 1rem;
}

/* Photo Card */
.why-choose-section .benefit-photo-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-section .benefit-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .why-choose-section .section-header h2 {
        font-size: 1.875rem;
    }

    .why-choose-section .benefit-card h3 {
        font-size: 1.25rem;
    }
}
