/* =========================
   ONE-TEAM-PITCH.CSS – FULLY RESPONSIVE
   Green background, centered text block, single strong statement.
========================= */

.one-team-pitch {
    width: 100%;
    padding: 80px 0;
    background: #0a1f1a;
}

.pitch-wrapper {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.one-team-pitch .section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.one-team-pitch .section-tag hr {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4ade80, #c084fc);
    border: none;
    margin: 0;
}

.one-team-pitch .section-tag h5 {
    color: #c084fc;
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.pitch-wrapper h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.pitch-wrapper p {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    color: #d1e0d6;
    line-height: 1.7;
    margin-bottom: 18px;
}

.pitch-wrapper p:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .one-team-pitch {
        padding: 60px 0;
    }
    .pitch-wrapper p {
        font-size: 0.9rem;
    }
}
