/* VISION 2026 主題論壇專屬樣式表 */
#v26-forum-final-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    font-family: 'Microsoft JhengHei', sans-serif;
    color: #333;
}

.forum-header-box {
    background: linear-gradient(135deg, #EBF5FF, #F4F0FF);
    border-left: 6px solid #00A3FF;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.1);
}

.forum-header-box h2 {
    font-size: 24px;
    color: #003366;
    font-weight: bold;
    margin: 0;
}

.forum-list-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.forum-card {
    display: flex;
    background: #FFF;
    border-radius: 20px;
    border: 1px solid #EAF2F8;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.05);
    flex-wrap: wrap;
}

.forum-time-sidebar {
    background: linear-gradient(180deg, #78B9F6, #B68FD8);
    color: white;
    padding: 20px;
    width: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.forum-time-sidebar .session-label {
    font-size: 14px;
    opacity: 0.9;
}

.forum-time-sidebar .time-text {
    font-size: 18px;
    font-weight: bold;
    margin-top: 5px;
}

.forum-content-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.forum-content-body h3 {
    color: #003366;
    font-size: 19px;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.forum-speaker-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.forum-tag {
    background: #F0F7FF;
    color: #00A3FF;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: bold;
}

.forum-speaker-name {
    font-size: 15px;
    color: #4A5568;
}

.forum-reg-btn {
    align-self: flex-start;
    background: linear-gradient(135deg, #00A3FF, #007BFF);
    color: #ffffff !important;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 163, 255, 0.3);
    transition: transform 0.2s;
}

.forum-reg-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}