/**
 * REDAKCJA - style podstrony
 * Plik: /css/redakcja.css
 */

/* Nagłówek strony */
.page-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    padding: 50px 20px;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin: 0;
}

/* Kontener */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sekcja zespołu */
.team-section {
    padding: 70px 0;
    background: #fff;
}

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

.team-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.team-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: #eee;
}

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

.team-info {
    flex: 1;
    padding-top: 5px;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 5px;
}

.team-role {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 12px;
}

.team-email {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #1e3a5f;
    text-decoration: none;
    transition: color 0.2s;
}

.team-email:hover {
    color: #e53e3e;
}

/* Sekcja podziękowań */
.thanks-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.thanks-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-box h2 {
    font-size: 18px;
    font-weight: 400;
    color: #1e3a5f;
    margin: 0 0 30px;
}

.thanks-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
    margin-bottom: 30px;
}

.thanks-list span {
    font-size: 14px;
    color: #555;
    padding: 8px 16px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
}

.thanks-note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin: 0;
}

/* Responsive */
@media (max-width: 700px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .team-photo {
        width: 100px;
        height: 100px;
    }
    
    .team-info {
        padding-top: 0;
    }
}

@media (max-width: 500px) {
    .page-header h1 {
        font-size: 26px;
    }
    
    .thanks-list span {
        font-size: 13px;
        padding: 6px 12px;
    }
}
