
.speakers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.speaker-card {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 15px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}
.speaker-card .SpImg {
    width: 300px;
    height: 300px;
    object-fit: cover;
  
    margin-bottom: 10px;
}
.speaker-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.SpeakerTitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    min-height: 40px;
}
.speaker-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}
.speaker-card .SpeakerTitle {
    font-size: 14px;
    color: #666;
}
.bio-button-wrapper {
    margin-top: auto;
    width: 100%;
    text-align: center;
}
.view-bio-button {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 14px;
    background: #0073aa;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
}
.view-bio-button:hover {
    background: #005d8d;
}
.speaker-detail {
    max-width: 800px;
    margin: 40px auto;
    font-family: sans-serif;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: center;
}
.bio-image {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.bio-text {
    text-align: left;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
}
.back-link {
    display: inline-block;
    margin-top: 20px;
    color: #0073aa;
    text-decoration: none;
}
.back-link:hover {
    text-decoration: underline;
}
.CardTop{
position: relative;
}
.SpFlag{
        width: 60px;
    position: absolute;
    bottom: 9px;
    right: 0px;
}