

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

/* Баннер */
.evt-banner {
    height: 450px;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
/* Можно добавить фоновое изображение через style в html */
.evt-banner__title {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 15px;
}
.evt-banner__subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* Фильтры */
.evt-filters {
    margin-bottom: 40px;
}
.evt-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.evt-filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}
.evt-filter-btn:hover {
    background: #e0e0e0;
}
.evt-filter-btn.active {
    background: #333;
    color: #fff;
}

.evt-cat-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.2s;
}
.evt-cat-btn:hover {
    border-color: #333;
    transform: translateY(-2px);
}
.evt-cat-btn.active {
    background: #fff3e0;
    border-color: #ff9800;
    color: #e65100;
}
.evt-cat-icon {
    font-size: 18px;
}

/* Сетка событий */
.evt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.evt-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}
.evt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.evt-card__img-wrap {
    height: 200px;
    overflow: hidden;
}
.evt-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.evt-card__content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.evt-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}
.evt-card__cat {
    color: #ff9800;
}
.evt-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.4;
}
.evt-card__info {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}
.evt-card__date, .evt-card__loc {
    margin-bottom: 6px;
}
.evt-card__footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    font-weight: 700;
    color: #333;
}

/* Детальная страница */
.evt-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}
.evt-detail__header {
    margin-bottom: 30px;
}
.evt-detail__badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}
.evt-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.evt-badge--city { background: #e3f2fd; color: #1565c0; }
.evt-badge--cat { background: #fff3e0; color: #e65100; }
.evt-detail__title {
    font-size: 36px;
    margin: 0;
    line-height: 1.2;
}
.evt-detail__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.evt-detail__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}
.evt-detail__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.evt-info-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 20px;
}
.evt-info-row {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f5f5f5;
}
.evt-info-row:last-child {
    border-bottom: none;
}
.evt-info-label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}
.evt-info-val {
    font-size: 16px;
    font-weight: 600;
}
.evt-info-val--price {
    font-size: 24px;
    color: #2e7d32;
}
.evt-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.evt-btn:hover {
    background: #000;
}
.evt-btn--block {
    width: 100%;
    margin-top: 10px;
}
.evt-back-link {
    display: inline-block;
    margin-top: 40px;
    color: #666;
    text-decoration: none;
}
.evt-back-link:hover {
    color: #333;
}

@media (max-width: 768px) {
    .evt-detail__grid {
        grid-template-columns: 1fr;
    }
}
/* End */
/* /local/components/china/events/templates/.default/style.css?17730059105030 */
