
.full_title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
	border-bottom: 1px solid #f0f0f0;
}

.full_s_and_s {
    margin-bottom: 25px;
    text-align: center;
	border-bottom: 1px solid #f0f0f0;
}

.full_container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.full_poster {
    width: 40%;
    flex-shrink: 0;
    position: relative;
}

.full_poster img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.full_content {
    width: 60%;
    flex-grow: 1;
}

.full_desc {
    margin-bottom: 25px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    min-width: 100px;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.info-label i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.info-value {
    flex: 1;
    color: #333;
    font-weight: 500;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    color: white;
    min-width: 45px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.age-0 { background: linear-gradient(135deg, #4CAF50, #388E3C); }
.age-6 { background: linear-gradient(135deg, #2196F3, #1976D2); }
.age-12 { background: linear-gradient(135deg, #FF9800, #F57C00); }
.age-16 { background: linear-gradient(135deg, #F44336, #D32F2F); }
.age-18 { background: linear-gradient(135deg, #B71C1C, #8B0000); }

.full_tags {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 30px;
}

.card_title {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5em;
}

/* Адаптивность */
@media (max-width: 768px) {
    .full_container {
        flex-direction: column;
        gap: 20px;
    }
    
    .full_poster,
    .full_content {
        width: 100%;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-label {
        min-width: auto;
    }
}

/* Стили для иконок Bootstrap */
.bi {
    vertical-align: -0.125em;
}

.two-column {
    display: grid;
    grid-template-columns: 200px 1fr; /* десктоп */
    gap: 15px;
    align-items: start;
    margin-bottom: 15px;
}

.poster_wrap {
    position: relative;
}

.poster_wrap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.badge_icons {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge_icon {
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    white-space: nowrap;
}

/* 📱 Мобильная версия */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr; /* одна колонка */
    }

    .short_col_left {
        order: 1; /* картинка сверху */
    }

    .short_col_right {
        order: 2; /* текст снизу */
        margin-top: 10px;
    }

    .badge_icons {
        top: 6px;
        right: 6px;
        flex-direction: row; /* бейджики в линию */
        gap: 8px;
    }

    .badge_icon {
        font-size: 11px;
        padding: 2px 5px;
    }
}

