/* --- 無圖片視覺區 (Hero Banner) --- */
.hero-banner {
    position: relative;
    width: 100%;
    /* 高度縮小一點，因為沒有圖片不需要佔太多空間 */
    height: 180px; 
    /* 琉行杯的主題漸層色 */
    background: linear-gradient(135deg, #0ca678 0%, #006994 100%);
    overflow: hidden;
}

/* 裝飾性幾何圖形 (讓純色不單調) */
.hero-banner::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-banner::before {
    content: '';
    position: absolute;
    left: -30px;
    top: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 25px;
    color: white;
    z-index: 2;
}

.banner-content .badge {
    /* 徽章改為半透明白色，在深色背景上更高級 */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content h2 {
    margin: 0 0 5px 0;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.banner-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}