/* VISION 2026 教室徵才專屬樣式表 */

/* 標題區塊 */
.v26-class-header-panel {
    background: linear-gradient(135deg, #EBF5FF, #F4F0FF); 
    border-left: 6px solid #00A3FF; 
    padding: 15px 25px; 
    border-radius: 12px; 
    margin-top: 30px; 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    box-shadow: 0 4px 12px rgba(0, 163, 255, 0.1);
}

.v26-class-header-panel h2 {
    font-size: 24px; 
    color: #003366; 
    font-weight: bold; 
    margin: 0;
}

/* 卡片網格 */
#v26-class-grid { 
    --v26-vision-blue: #78B9F6; 
    --v26-vision-purple: #B68FD8; 
    --v26-vision-yellow: #FFC107; 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    max-width: 1200px; 
    margin: 30px auto; 
    padding: 0 10px;
}

.v26-class-card {
    background: #FFF;
    border-radius: 24px;
    border: 1px solid #EAF2F8;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.05);
    display: flex;
    flex-direction: column;
    height: 240px; 
    transition: 0.3s;
    overflow: hidden;
}

.v26-class-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 163, 255, 0.15);
}

.v26-class-header {
    background: linear-gradient(135deg, var(--v26-vision-blue), var(--v26-vision-purple));
    padding: 12px;
    text-align: center;
    color: white;
}
.v26-class-company { font-size: 17px; font-weight: 800; letter-spacing: 0.5px; }

.v26-class-body {
    padding: 15px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto; 
}

.v26-room-tag {
    display: inline-block;
    background: #FFF9E6;
    color: #B38F00;
    border: 1px solid var(--v26-vision-yellow);
    padding: 2px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 12px;
}

.v26-purpose-text {
    font-size: 13.5px;
    color: #4A5568;
    line-height: 1.5;
    margin-bottom: 10px;
}

.v26-class-links {
    padding: 12px 18px;
    display: flex;
    gap: 8px;
    background: #FBFCFF;
    border-top: 1px solid #F0F4F8;
}

.v26-class-btn {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none !important;
    transition: 0.2s;
}

.btn-apply { background: var(--v26-vision-blue); color: white !important; }
.btn-dm { background: white; border: 1px solid var(--v26-vision-blue); color: var(--v26-vision-blue) !important; }
.v26-class-btn:hover { filter: brightness(1.1); transform: scale(1.03); }

/* 海報容器樣式 */
.v26-poster-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 15px;
    background: linear-gradient(135deg, #F8FAFD, #FDFBFE);
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.v26-poster-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0, 51, 102, 0.1);
    border: 4px solid #FFF;
    transition: 0.3s;
}

.v26-poster-image:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(0, 163, 255, 0.2);
}

/* 響應式佈局 */
@media (max-width: 900px) { #v26-class-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { 
    #v26-class-grid { grid-template-columns: 1fr; } 
    .v26-class-card { height: auto; min-height: 260px; } 
}