/* === 原有樣式 === */
.news-date {
    width: 100px;
    display: inline-block;
}

.news-title {
    color: #4D79BC;
}

.btn-more {
    color: #767676;
}

.text-color {
    color: #4C4948;
}

.border-style {
    border: 2px solid lightgray;
}

/* === 音樂查詢搜尋區塊 === */
.hero-search-section {
    background: linear-gradient(135deg, #f8f4f6 0%, #eef1f8 100%);
    border-radius: 12px;
    border: 1px solid #e8e0e4;
}

.hero-search-title {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #9A2D42, #182987);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.15rem;
}

.hero-search-subtitle {
    font-size: 1rem;
}

.hero-search-form {
    max-width: 600px;
}

.hero-search-group {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.hero-search-input {
    border: 2px solid #ddd;
    border-right: none;
    padding: 12px 18px;
    font-size: 1rem;
    height: auto;
}

.hero-search-input:focus {
    border-color: #9A2D42;
    box-shadow: none;
}

.hero-search-btn {
    background: linear-gradient(135deg, #9A2D42, #182987);
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

.hero-search-btn:hover {
    background: linear-gradient(135deg, #7a2335, #132170);
    color: #fff;
}

/* === 專輯卡片 === */
.album-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.album-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-4px);
}

.album-img-wrapper {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.album-img {
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-card:hover .album-img {
    transform: scale(1.05);
}

.album-name {
    font-weight: 500;
    color: #333;
}

/* === 服務資訊卡片 === */
.info-card {
    border: 1px solid #e8e0e4;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.info-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.info-card-header {
    background: linear-gradient(135deg, #9A2D42, #182987);
    color: #fff;
    padding: 14px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

.info-card-body {
    padding: 20px;
}

.info-card-body p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-card-btn {
    background-color: #fff;
    color: #9A2D42;
    border: 1px solid #9A2D42;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.info-card-btn:hover {
    background: linear-gradient(135deg, #9A2D42, #182987);
    color: #fff;
    border-color: transparent;
    text-decoration: none;
}