/* ==================== ABOUT THE HEADS STYLES ==================== */
.heads-section {
    padding: 100px 0;
    background-color: #fff;
}

.heads-section h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.heads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.head-card {
    text-align: center;
}

.head-photo-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    margin: 0 auto 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.head-card:hover .head-photo-placeholder {
    transform: scale(1.05);
}

.head-photo-placeholder svg {
    width: 100px;
    height: 100px;
    color: rgba(20, 40, 130, 0.2);
}

.head-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.head-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .heads-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .heads-grid {
        grid-template-columns: 1fr;
    }
}