/* Other Page Component Styles */

.explore-features {
    padding: 60px 0;
    background: #f8fafc;
}

.explore-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto 50px;

    @media (max-width: 768px) {
        gap: 16px;
        margin-bottom: 32px;
    }
}

.explore-card {
    flex: 0 1 380px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none !important;
}

.explore-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-color: #e2e8f0;
}

.feature-label {
    color: #9333ea;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.explore-card h3.explore-title {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.explore-desc {
    color: #475569;
    margin-bottom: 30px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.2em;
    /* Ensures cards stay same height if 1 or 2 lines */

    @media (max-width: 768px) {
        font-size: 13px;
        margin-bottom: 16px;
    }
}

.explore-link {
    color: var(--accent-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.3s ease;

    @media (max-width: 768px) {
        font-size: 14px;
    }
}

.explore-card:hover .explore-link {
    gap: 14px;
}

.explore-actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .explore-card {
        flex: 0 1 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .explore-card {
        flex: 0 1 100%;
    }
}