/*
Theme Name: Astra Child
Template: astra
*/

.specialties-archive {
    padding: 60px 0;
}

.specialties-archive .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.archive-header h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.archive-header p {
    font-size: 16px;
    color: #555;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.specialty-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.icon-fallback {
    font-size: 40px;
}

.specialty-info h2 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #1e293b;
}

.specialty-info span {
    font-size: 14px;
    color: #666;
}

