.speakers {
    background: #f4f3ed;
    padding-bottom: 160px;
}

.speakers__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
}

.speakers__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: -0.42px;
    color: #111110;
    max-width: 803px;
}

.speakers__grid {
    display: flex;
    gap: 24px;
}

.speakers__card {
    flex: 1;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 576 / 768;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #111110;
}

.speakers__card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speakers__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    pointer-events: none;
}

.speakers__card-body {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 28px 28px 0;
}

.speakers__card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    backdrop-filter: blur(4px);
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.88px;
    text-transform: uppercase;
    color: #f6f5f1;
    white-space: nowrap;
}

.speakers__card-num {
    font-family: 'Space Mono', 'JetBrains Mono', monospace;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    padding-top: 4px;
}

.speakers__card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 150px;
    flex-direction: column;
    gap: 6px;
    background-color: #12120D;
    padding: 30px 28px;
}

.speakers__card-name {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.21;
    letter-spacing: -0.28px;
    color: #f6f5f1;
}

.speakers__card-role {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #d6d5cd;
    max-width: 350px;
}

@media (max-width: 1024px) {
    .speakers {
        padding-bottom: 100px;
    }

    .speakers__title {
        font-size: 36px;
    }

    .speakers__card-name {
        font-size: 22px;
    }

    .speakers__card-body {
        padding: 20px 20px 0;
    }

    .speakers__card-footer {
        padding: 20px 20px;
        min-height: 130px;
    }
}

@media (max-width: 768px) {
    .speakers {
        padding-bottom: 60px;
    }

    .speakers__title {
        font-size: 26px;
    }

    .speakers__header {
        padding-bottom: 24px;
    }

    .speakers__grid {
        flex-direction: column;
        gap: 16px;
    }

    .speakers__card {
        aspect-ratio: auto;
        min-height: 400px;
    }

    .speakers__card-name {
        font-size: 20px;
    }

    .speakers__card-role {
        font-size: 13px;
    }

    .speakers__card-footer {
        min-height: 110px;
        padding: 16px 20px;
    }

    .speakers__card-body {
        padding: 16px 16px 0;
    }

    .speakers__card-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
}
