/* --- POUZE PRO INDEX.HTML --- */
.hero {
    padding: 80px 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
}

.restart { padding: 60px 0; }

.team-grid, .program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.member-card, .program-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.program-card {
    background-color: #203F1C;
    text-align: left;
    border-left: 6px solid #8CFF00;
}

.photo-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    background: #8C52FF;
    margin-bottom: 15px;
    overflow: hidden;
    display: flex;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
