

/* ===================== ===================== */
.coffee-break-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}
.coffee-break-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #003399, transparent);
}
.coffee-break-text {
    font-size: 18px;
    font-weight: 600;
    color: #003399;
    white-space: nowrap;
    padding: 0 10px;
}
/* ================================================================== */


.agenda-section {
    padding: 70px 0;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.agenda-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.agenda-section-title h2 {
    font-size: 36px;
    color: #003399;
    margin-bottom: 12px;
    font-weight: 700;
}
.agenda-section-title p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.agenda-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}
.tab-item {
    padding: 12px 28px;
    background: #fff;
    border: 2px solid #003399;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #003399;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tab-item.active,
.tab-item:hover {
    background: #003399;
    color: #fff;
}

.agenda-content {
    display: none;
}
.agenda-content.active {
    display: block;
}

.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.agenda-item {
    display: grid;
    grid-template-columns: 80px 120px 1fr 220px;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    gap:15px;

}
.agenda-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0, 51, 153, 0.15);
    border-left: 4px solid #28a745;
}

.speaker-avatar {
    width:70px;
    height:70px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid #e8f0ff;
}
.speaker-avatar img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    /*visibility: hidden;*/
}

.agenda-time {
    font-size: 17px;
    font-weight: 600;
    color: #003399;
}

.agenda-info h4 {
    font-size: 19px;
    color: #111;
    margin-bottom: 8px;
}
.agenda-info p {
    font-size: 15px;
    color: #555;
}
.agenda-info p span {
    color: #003399;
    font-weight: 500;
}

.agenda-tag {

    text-align: right;
    /*text-align: left;*/
}
.tag {
    display: inline-block;
    padding: 6px 14px;
    background: #e8f0ff;
    color: #003399;
    border-radius: 4px;
    font-size: 14px;
}
.tag.green {
    background: #e8f8ef;
    color: #198754;
}

@media (max-width: 992px) {
    .agenda-item {
        grid-template-columns: 60px 110px 1fr;
    }
    .agenda-tag {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 10px;
    }
    .speaker-avatar {
        width:55px;
        height:55px;
    }
}
@media (max-width: 576px) {
    .agenda-section-title h2 {
        font-size: 28px;
    }
    .agenda-item {
        grid-template-columns: 60px 1fr;
        padding: 20px;
    }
    .agenda-time {
        grid-column: 2;
        margin-bottom:8px;
    }
    .agenda-info {
        grid-column:1/-1;
    }
    .tab-item {
        padding: 10px 20px;
        font-size: 15px;
    }
}