/* STILI PAGINA ROUND ROBIN STUDY
------------------------------------ */

/* HERO SECTION */
.page-hero {
    padding: 60px 0;
    text-align: center;
    background-color: var(--rosso-unipd);
    color: var(--text-light);
}

.page-hero h1 {
    font-size: 3rem;
    margin: 0;
}

.page-hero .subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* SEZIONI GENERICHE */
.rrs-section {
    padding: 80px 0;
}

.rrs-section.bg-light-grey {
    background-color: #f9f9f9;
}

.rrs-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 50px;
}

/* LAYOUT A DUE COLONNE (MOTIVAZIONE) */
.rrs-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rrs-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* SEZIONE SCOPI DELLO STUDIO */
.scopi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}

.scopo-card {
    background-color: #fff;
    padding: 30px;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
}

.scopo-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--rosso-unipd);
    margin-bottom: 15px;
}

/* SEZIONE A CHI È RIVOLTO */
.icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.icon-item {
    text-align: center;
    flex-basis: 180px;
}

.icon-item img {
    height: 80px;
    margin-bottom: 15px;
}

.icon-item p {
    font-weight: 500;
    font-size: 1rem;
    margin: 0;
}

/* SEZIONE IN COSA CONSISTE (MODIFICATA) */
.consiste-layout-vertical {
    max-width: 800px;
    margin: 0 auto;
}

.consiste-layout-vertical p {
    margin-bottom: 30px;
}

.analysis-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

.analysis-item {
    text-align: center;
}

.analysis-item img {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.analysis-item h4 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* SEZIONE FORM EMAIL */
.email-form-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.email-form-card p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.email-form input {
    flex: 1;
    max-width: 400px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
    .rrs-intro-layout, .scopi-grid {
        grid-template-columns: 1fr;
    }

    .rrs-image {
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .analysis-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}

.no-wrap {
    white-space: nowrap;
}