/* --- 服務績優人員頁面樣式 --- */
.awards-container {
    width: 100%;
    margin: 0 auto;
    font-family: "微軟正黑體", "Microsoft JhengHei", sans-serif;
}

.page-title {
    font-size: 2em;
    color: #c2242d;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

/* --- 每一季的區塊 --- */
.season-awards {
    margin-bottom: 40px;
}
.season-awards h2 {
    font-size: 1.8em;
    color: #fff;
    background-color: #c2242d;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
}

/* --- 員工照片網格 --- */
.employee-grid {
    display: grid;
    /* 響應式網格：每欄最小200px，最大1fr (平分剩餘空間) */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* --- 員工卡片 --- */
.employee-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 250px; /* 固定高度以求對齊 */
    background-color: #f0f0f0;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 確保圖片填滿且不變形 */
}

.card-caption {
    padding: 15px 10px;
}
.branch-name {
    display: block;
    font-size: 1em;
    color: #555;
    font-weight: bold;
}
.employee-name {
    display: block;
    font-size: 1.2em;
    color: #c2242d;
    font-weight: bold;
    margin-top: 5px;
}

/* --- RWD --- */
@media (max-width: 768px) {
    .page-title { font-size: 1.6em; }
    .season-awards h2 { font-size: 1.4em; }
    .employee-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    .card-image { height: 200px; }
}