/* Healthcare Category Styles */
.healthcare-main {
    padding: 3rem 0;
    min-height: 60vh;
}

.healthcare-section {
    margin-bottom: 3rem;
}

.healthcare-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-desc {
    color: #64748b;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.healthcare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.healthcare-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.healthcare-card:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

.healthcare-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.healthcare-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.healthcare-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #d1fae5;
    color: #047857;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.healthcare-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

/* Featured Card Style */
.healthcare-card.featured {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    grid-column: 1 / -1;
    max-width: 600px;
}

.healthcare-card.featured:hover {
    border-color: #16a34a;
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.25);
}

.healthcare-card.featured .healthcare-badge {
    background: #22c55e;
    color: #fff;
}

.healthcare-card.featured h3 {
    font-size: 1.5rem;
}

.healthcare-card.featured p {
    font-size: 1rem;
    line-height: 1.6;
}
