.kont-section {
    padding: 3.5rem 0;
    background: #ffffff;
}

/* Podpora obou verzí názvů tříd (před/po restartu serveru) */
.kont-section-header,
.kont-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.kont-section-title,
.kont-title {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    font-weight: 700;
    color: #1e40af;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.kont-section-subtitle,
.kont-subtitle {
    color: #64748b;
    font-size: 0.9375rem;
    margin: 0;
}

.kont-grid {
    max-width: 580px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
    align-items: stretch;
}

.kont-photo {
    width: 100%;
    aspect-ratio: 1 / 0.94;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(30, 64, 175, 0.1);
}

.kont-card {
    padding: 1.25rem 1rem;
    border-radius: 24px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.kont-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.kont-name {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
    line-height: 1.15;
    font-weight: 800;
    color: #1e40af;
    text-align: center;
}

.kont-whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #22c55e;
    font-size: 0.9375rem;
    font-weight: 800;
    text-decoration: none;
    background: rgba(34, 197, 94, 0.1);
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    transition: background 0.18s, color 0.18s;
}

.kont-whatsapp:hover {
    background: #22c55e;
    color: #ffffff;
}

/* Podpora obou názvů pro telefon */
.kont-phone-row,
.kont-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #1e40af;
    font-size: 0.9375rem;
    font-weight: 800;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.18s;
}

.kont-phone-row:hover,
.kont-phone:hover {
    color: #1e3a8a;
}

@media (max-width: 520px) {
    .kont-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}
