/* ------------------------------------------------ */
/* INFO PAGE */
/* ------------------------------------------------ */

.info-wrapper .section-lead {
    max-width: 820px;
    margin: 0 auto 36px auto;
    text-align: center;
    line-height: 1.7;
    font-size: 1.05rem;
}

.info-wrapper {
    padding-bottom: 96px;
    padding-top: 118px;
}

.info-wrapper .section-title {
    color: var(--text-color);
}

.info-wrapper .info-section {
    margin-bottom: 32px;
}

.info-wrapper .mini-hero {
    width: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 114, 206, 0.45), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(92, 6, 140, 0.4), transparent 60%),
        linear-gradient(135deg, #0046a7 0%, #5c068c 100%);
    background-size: 200% 200%;
    animation: miniHeroFloat 14s ease-in-out infinite alternate;
    padding: 24px 20px;
}

.info-wrapper .mini-hero .section-title {
    margin: 0 auto;
    max-width: 1320px;
    font-size: 1.6rem;
    text-align: left;
    color: #ffffff;
}

.info-wrapper .info-content {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 20px 0 20px;
}

.info-wrapper .info-text {
    text-align: center;
}

.info-wrapper .info-paragraphs {
    max-width: 1120px;
    margin: 0 auto 24px auto;
    text-align: left;
    line-height: 1.75;
    font-size: 1.05rem;
}

.info-wrapper .info-paragraphs p {
    margin-bottom: 18px;
}

.info-wrapper .info-block {
    margin-bottom: 26px;
}

.info-wrapper .info-block h3 {
    margin: 0 0 12px 0;
}

.info-wrapper .info-block-title {
    color: var(--info-subtitle-color);
    font-size: 1.15rem;
}

.info-wrapper .info-content a {
    color: var(--info-link-color);
}

.info-wrapper .info-content a:hover {
    opacity: 0.8;
}

.info-wrapper .info-content.sponsors .section-lead {
    text-align: left;
    max-width: 1120px;
    margin: 0 auto 24px auto;
}

.info-wrapper .info-list {
    padding-left: 18px;
    margin: 0 0 16px 0;
    line-height: 1.7;
}

.info-wrapper .info-list li {
    margin-bottom: 8px;
}

.info-wrapper .info-list-columns {
    columns: 2;
    column-gap: 40px;
    max-width: 700px;
}

.info-wrapper .info-list-columns li {
    break-inside: avoid;
}

.info-wrapper .team-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 16px;
    align-items: start;
}

.info-wrapper .team-group {
    --team-accent: #9a9a9a;
    border: 1px solid var(--team-accent);
    background: transparent;
    padding: 14px 12px;
    transition: box-shadow 0.2s ease;
}

.info-wrapper .team-group:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.info-wrapper .team-group-research {
    --team-accent: var(--info-subtitle-color);
}

.info-wrapper .team-group-technical {
    --team-accent: var(--info-link-color);
}

.info-wrapper .team-group-support {
    --team-accent: var(--muted-text);
}

.info-wrapper .team-group-title {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 500;
    color: color-mix(in srgb, var(--team-accent) 85%, #222);
    text-align: center;
}

.info-wrapper .team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
}

.info-wrapper .team-member {
    margin: 0;
    padding: 6px 4px;
    text-align: center;
    transition: transform 0.2s ease;
}

.info-wrapper .team-member:hover {
    transform: translateY(-2px);
}

.info-wrapper .team-member img {
    width: 94px;
    height: 94px;
    object-fit: cover;
    display: block;
    margin: 0 auto 8px auto;
    border-radius: 4px;
    transition: transform 0.2s ease;
}

.info-wrapper .team-member:hover img {
    transform: scale(1.03);
}

.info-wrapper .team-member p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.3;
}

.info-wrapper .team-member-wide {
    grid-column: 1 / -1;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
}

.info-wrapper .logo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-wrapper .logo-tile {
    background: var(--info-logo-bg);
    border-radius: 18px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.info-wrapper .logo-tile img {
    max-width: 220px;
    max-height: 120px;
    object-fit: contain;
}

@keyframes miniHeroFloat {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@media (max-width: 800px) {
    .info-wrapper .info-list-columns {
        columns: 1;
    }

    .info-wrapper .team-groups {
        grid-template-columns: 1fr;
    }

    .info-wrapper .logo-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .info-wrapper .mini-hero .section-title {
        font-size: 1.35rem;
    }
}
