/* ==========================================================================
   Featured Speakers Component
   ========================================================================== */

.featured-speakers {
    padding: 80px 0 100px;
}

/* Title
   ========================================================================== */

.featured-speakers__title {
    font-size: 3.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.5;
}

/* Grid
   ========================================================================== */

.featured-speakers__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
	    max-width: 1000px;
    margin: 0 auto;
}

/* Card
   ========================================================================== */

.featured-speakers__card {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 22px 32px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Avatar
   ========================================================================== */

.featured-speakers__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #0296FF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    flex-shrink: 0;
    line-height: 1.5;
}

.featured-speakers__avatar img {
    border-radius: 50%;
}

/* Speaker Info
   ========================================================================== */

.featured-speakers__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.featured-speakers__name {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.featured-speakers__position {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}

.featured-speakers__company {
	font-size: 14px;
    font-weight: 400;
    color: #64748B;
    line-height: 1.5;
}

/* Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .featured-speakers__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .featured-speakers {
        padding: 50px 0;
    }

    .featured-speakers__title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .featured-speakers__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
}
