

/* Start:/local/components/china/holiday/templates/.default/style.css?17729843275558*/
.holiday-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Баннер */
.holiday-banner {
    width: 100%;
    height: 250px;
    background-color: #c62828; /* Цвет заглушки */
    background-image: linear-gradient(135deg, #c62828 0%, #b71c1c 100%); /* Градиент пока нет картинки */
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.holiday-header {
    text-align: center;
    margin-bottom: 30px;
}

.holiday-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333;
}

.holiday-subtitle {
    color: #666;
    font-size: 18px;
}

.holiday-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.holiday-legend__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

/* Кружочки в легенде */
.holiday-legend__circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0; /* Чтобы не сплющивались */
}

.holiday-legend__circle--weekend {
    background: #ffebee;
}

.holiday-legend__circle--fest {
    background: #c62828;
}

/* Сетка календаря */
.holiday-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.holiday-month {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.holiday-month__title {
    text-align: center;
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #c62828;
    font-weight: 600;
}

.holiday-month__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.holiday-month__weekday {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.holiday-month__weekday--red {
    color: #e57373;
}

.holiday-day {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border-radius: 50%;
    color: #333;
    transition: all 0.2s;
}

.holiday-day--weekend {
    color: #c62828;
    background: #ffebee;
}

.holiday-day--fest {
    background: #c62828;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

.holiday-day--fest:hover {
    background: #b71c1c;
    transform: scale(1.1);
}

/* Список праздников */
.holiday-list {
    margin-top: 40px;
}

.holiday-list h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.holiday-list__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.holiday-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.holiday-card:hover {
    border-color: #c62828;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.1);
    transform: translateY(-2px);
}

.holiday-card__date {
    font-weight: 700;
    color: #c62828;
    font-size: 16px;
    width: 100px;
    flex-shrink: 0;
}

.holiday-card__info {
    flex-grow: 1;
}

.holiday-card__name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.holiday-card__cn {
    color: #999;
    font-weight: 400;
    margin-left: 6px;
}

.holiday-card__desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.holiday-card__arrow {
    color: #ccc;
    font-size: 20px;
    margin-left: 15px;
}

/* Детальная страница */
.holiday-detail {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 0 60px;
    /* background: #fff; Убрал фон контейнера, он будет у контентной части */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.holiday-detail__header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.holiday-detail__date-badge {
    display: inline-block;
    background: #ffebee;
    color: #c62828;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.holiday-detail__title {
    font-size: 36px;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.holiday-detail__cn {
    font-size: 24px;
    color: #888;
}

.holiday-detail__content {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.holiday-detail__note {
    margin-top: 30px;
    padding: 20px;
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    font-size: 16px;
}

.holiday-detail__nav {
    margin-top: 40px;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-outline {
    border: 1px solid #ddd;
    color: #555;
}

.btn-outline:hover {
    border-color: #333;
    color: #333;
}

/* Хлебные крошки */
.holiday-breadcrumbs {
    padding: 20px 0;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}
.holiday-breadcrumbs a {
    color: #c62828;
    text-decoration: none;
}
.holiday-breadcrumbs span {
    margin: 0 5px;
    color: #999;
}

/* End */
/* /local/components/china/holiday/templates/.default/style.css?17729843275558 */
