/* EXPLORE MORE SECTION */
.explore-section {
    padding: 5rem 1.5rem;
    background-color: var(--bg-white);
    max-width: 1440px;
    margin: 0 auto;
}

.explore-header {
    max-width: 600px;
    margin-bottom: 3rem;
}

.explore-eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: block;
}

.explore-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.explore-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* GRID */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* CARD */
.explore-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    /* Default subtle shadow */
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.explore-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.explore-card:focus-visible {
    outline: 2px solid var(--primary-green);
    outline-offset: 4px;
}

/* CONTENT AREA */
.explore-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.explore-card__icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #f0fdf4; /* Light green background */
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background-color 0.3s ease;
}

.explore-card:hover .explore-card__icon-wrapper {
    background-color: #dcfce7; /* Slightly darker green on hover */
}

.explore-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.explore-card__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* ARROW AREA */
.explore-card__arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--primary-green);
}

.explore-card__arrow svg {
    transition: transform 0.3s ease;
}

.explore-card:hover .explore-card__arrow svg {
    transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 1280px) {
    .explore-grid {
        gap: 1rem; /* Slightly smaller gap on smaller desktops to fit 4 cards */
    }
}

@media (max-width: 1024px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .explore-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 600px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-card {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .explore-card__content {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
    
    .explore-card__icon-wrapper {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .explore-card__text {
        display: flex;
        flex-direction: column;
    }
    
    .explore-card__title {
        margin-bottom: 0.25rem;
    }
    
    .explore-card__desc {
        margin-bottom: 0;
        font-size: 0.875rem;
    }
    
    .explore-card__arrow {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    /* Revert to vertical layout on very small screens if text is too long */
    .explore-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
    }
    
    .explore-card__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }
    
    .explore-card__icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .explore-card__desc {
        margin-bottom: 1.5rem;
        font-size: 0.9375rem;
    }
    
    .explore-card__arrow {
        width: 100%;
    }
}
