.speaker_lists {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 60px 40px !important; /* Increased gap */
    padding: 0;
    margin: 40px 0 0;
    list-style: none;
}
.speaker_list {
    width: 100% !important;
    margin-bottom: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}
.img_wrapper {
    border-radius: 0px !important;
    overflow: hidden;
    aspect-ratio: 1/1 !important;
    width: 170px !important; /* Enlarged from 140px */
    height: 170px !important; /* Enlarged from 140px */
    margin: 0 auto 20px !important;
    box-shadow: none !important;
    background-color: transparent !important;
    border: none !important;
    transition: transform 0.3s ease;
}
.img_wrapper:hover {
    transform: translateY(-5px);
    box-shadow: none !important;
}
.img_wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}
.text_wrapper {
    width: 100% !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box;
}
h4 {
    margin-bottom: 6px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.name {
    font-family: "GmarketSans", sans-serif !important;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #111 !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.2 !important;
}
.company {
    display: inline-block !important;
    font-size: 12px !important;
    color: #666 !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}
.job {
    display: block !important;
    margin-top: 4px;
}
.job p {
    display: block !important;
    font-size: 11px !important;
    color: #888 !important;
    margin: 0 0 2px 0 !important;
    padding-left: 0 !important;
    line-height: 1.3 !important;
}
.job p:before {
    display: none !important;
}
.tip_page_info {
    position: absolute;
    top: 2.6042vw;
    right: 18.75vw;
    color: #999;
    font-size: 13px;
}
.tip_text_info {
    font-size: 11px;
    color: #C82A77;
    margin-left: 8px;
    font-weight: bold;
}

/* "and more..." bubble styling */
.and-more-bubble {
    background-color: #fcfcfc !important;
    border: 2px dashed #bbb !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: default;
    box-shadow: none !important;
}
.and-more-bubble:hover {
    transform: none !important;
    box-shadow: none !important;
}
.and-more-bubble span {
    font-family: "GmarketSans", sans-serif;
    font-size: 14px;
    color: #999;
    font-weight: bold;
    letter-spacing: -0.5px;
}

/* Coming Soon Section */
.coming-soon {
    margin: 80px 0;
    text-align: center;
}
.coming-soon h3 {
    font-family: "GmarketSans", sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: #C82A77;
}

@media all and (max-width:991px) {
    .speaker_lists {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 40px 25px !important;
    }
    .img_wrapper {
        width: 140px !important; /* Enlarged from 110px */
        height: 140px !important; /* Enlarged from 110px */
        margin-bottom: 12px !important;
    }
    .name {
        font-size: 14px !important;
    }
    .company {
        font-size: 11px !important;
    }
    .job p {
        font-size: 10px !important;
    }
    .tip_page_info {
        top: 3.9063vw;
        right: 5.2083vw;
        font-size: 12px;
    }
}

@media all and (max-width:479px) {
    .speaker_lists {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px 15px !important;
    }
    .img_wrapper {
        width: 95px !important; /* Enlarged from 85px */
        height: 95px !important; /* Enlarged from 85px */
        margin-bottom: 8px !important;
        border-width: 2px;
    }
    .and-more-bubble span {
        font-size: 11px;
    }
    .name {
        font-size: 12px !important;
    }
    .company {
        font-size: 10px !important;
    }
    .job p {
        font-size: 9px !important;
    }
    .tip_page_info {
        display: none !important;
    }
}
