#talk {
    width: 100%;
    min-height: 100vh;
    height: max-content;
    padding-top: 10vh;
}

#talk .talk-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100%;
    height: max-content;
    max-width: var(--section-max-width);
    gap: 40px;
    margin: auto;
}

#talk .card {
    height: 200px;
}

#talk hr {
    border: none;
    width: 100%;
    border-top: 1px solid #fff3;
}

/* ===== Header ===== */

#talk .header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
}

#talk .header h1 {
    font-family: var(--font-poppins);
    font-size: 3.5rem;
}

#talk .header .speaker-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}


#talk .header .speaker-profile .info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

#talk .header .speaker-profile .img-container {
    padding-left: 12px;
}

#talk .header .speaker-profile .img-container img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-left: -12px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

/* ===== Body ===== */

#talk .body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 70px;
}

#talk .body h2 {
    font-family: var(--font-poppins);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#talk .body p {
    letter-spacing: 0.05em;
    line-height: 1.8;
}

#talk .body a {
    color: #a74848;
}

#talk .body .bio > div {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 30px;
}

#talk .body .bio > div img {
    width: 130px;
    height: 130px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

#talk .body .bio p > .name{
    background-color: #ffa3a333;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: smaller;
}

@media (max-width: 768px) {
    #talk {
        padding-top: 100px;
    }
    #talk .header h1 {
        font-size: 2.1rem;
    }
    #talk .header .speaker-profile {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }
    #talk .header .speaker-profile .img-container img {
        width: 45px;
        height: 45px;
    }
    #talk .header .speaker-profile .info h2 {
        font-size: 1.2rem;
    }
    #talk .header .speaker-profile .info p {
        font-size: 0.9rem;
    }
    #talk .body .bio > div {
        flex-direction: column;
    }
}