main {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #f6f5f1;
}

a {
    color: blue;
}

.event-title {
    font-size: 25rem;
    line-height: 1.4444444444;
    font-weight: 900;
    margin-top: 35px;
    margin-bottom: 35px;
    color: #1a4975;
}

@media screen and (max-width: 767.9px) {
    .event-title {
        margin-top: 10px;
        margin-bottom: 10px;
        text-align: left;
        font-size: 20rem;
        line-height: 1.4;
        font-weight: 700;
    }
}

    .details {
        background: #fff;
        padding: 12px 16px;
        border-radius: 10px;
    }

    .schedule-title {
        background: #1a4975;
        border-radius: 90px;
        color: #fff;
    }


    /* -----------------------
       Schedule blocks
       ----------------------- */
    .day {
        margin-bottom: 28px;
    }

    .time-row {
        display: flex;
        gap: 18px;
        align-items: flex-start;
        margin: 18px 0;
    }

    .time {
        min-width: 96px;
        font-weight: 700;
        color: var(--accent);
    }

    .time+.time {
        min-width: 120px;
    }

    .time-body {
        flex: 1;
        background: #fff;
        padding: 12px 16px;
        border-radius: 10px;
    }

    .time-body-p {
        margin-top: 8px;
        font-size: 18px;
    }

    .thumb-row {
        display: flex;
        gap: 12px;
        margin-top: 12px;
        flex-wrap: wrap;
    }

    .thumb {
        width: 300px;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        background: #eee;
    }

    .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* -----------------------
       Speakers grid
       ----------------------- */
    .speakers {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 12px;
    }

    .speaker {
        background: #fff;
        padding: 12px;
    }

    .speaker img {
        width: 150px;
        height: 150px;
        object-fit: cover;
        display: block;
    }

    .speaker .name {
        font-weight: 700;
        font-size: 14px
    }

    .speaker .role {
        color: var(--muted);
        font-size: 13px;
        margin-top: 6px
    }

    .caution {
        margin: 50px 0;
        font-size: 15px;
    }

.event-button{
    margin: 0 auto;
    text-align: center;
}

.cta-item__link.--event{
    font-size: 1.3em;
    background-color: #06DAF3;
    text-align: center;
}


    /* -----------------------
       Responsive
       ----------------------- */
    @media (max-width:1000px) {
        .speakers {
            grid-template-columns: repeat(2, 1fr)
        }
    }

    @media (max-width:720px) {
        .speakers {
            grid-template-columns: 1fr;
        }

        .time {
            min-width: 86px;
            font-size: 13px
        }

        .thumb {
            width: 45%;
        }

        .time-body-p {
            font-size: 12px;
        }

        .caution {
            margin: 50px 0;
            font-size: 10px;
        }
        .schedule-title{
            text-align: center;
            /* padding-left: 15px; */
        }
    }