/* Баннеры для блога */
.blog__content .container {
    max-width: 1800px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.blog__layout {
    display: flex !important;
    gap: 40px !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.blog__sidebar {
    position: sticky;
    top: 20px;
    width: 280px;
    flex-shrink: 0;
}

.blog__main {
    width: 1200px !important;
    flex-shrink: 0;
}

/* Основной контейнер баннера */
.blog-banner {
    padding: 0;
    color: white;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Border стили будут применяться динамически через inline стили */
}

/* Контент баннера */
.blog-banner__content {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 25px;
    position: relative;
}

/* Заголовок баннера */
.blog-banner__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-banner__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-banner__title-main {
    display: block;
    font-size: 22px;
}

.blog-banner__title-sub {
    display: block;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.95;
}

/* Особенности/функции */
.blog-banner__features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-banner__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
    padding: 8px 0;
}

.blog-banner__feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px;
}

.blog-banner__feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blog-banner__feature-icon i {
    font-size: 18px;
    color: white;
}

.blog-banner__feature-text {
    color: white;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

/* Персонажи игры */
.blog-banner__characters {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-banner__character {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background 0.3s ease;
}

.blog-banner__character:hover {
    background: rgba(255, 255, 255, 0.15);
}

.blog-banner__character-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-banner__character-name {
    color: white;
    font-size: 15px;
    font-weight: 600;
}

/* Кнопка */
.blog-banner__button {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 16px 24px;
    border-radius: 15px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Кнопка с кастомным цветом - переопределяет градиент */
.blog-banner__button[style*="background-color"] {
    background: inherit !important;
}

.blog-banner__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFE55C 0%, #FFB347 100%);
    text-decoration: none;
    color: #000;
}

/* Hover для кнопки с кастомным цветом */
.blog-banner__button[style*="background-color"]:hover {
    background: inherit !important;
    filter: brightness(1.1);
}

.blog-banner__button:active {
    transform: translateY(0);
}

/* Футер баннера */
.blog-banner__footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-banner__reviews {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.blog-banner__reviews-text {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.blog-banner__stars {
    color: #FFD700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.blog-banner__star {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.blog-banner__star:hover {
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 1800px) {
    .blog__layout {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .blog__sidebar {
        display: none;
    }
    
    .blog__main {
        width: 100% !important;
        max-width: 1200px !important;
    }
}

@media (max-width: 768px) {
    .blog-banner {
        margin-bottom: 20px;
        border-radius: 16px;
    }
    
    .blog-banner__content {
        min-height: 350px;
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .blog-banner__title-main {
        font-size: 20px;
    }
    
    .blog-banner__title-sub {
        font-size: 15px;
    }
    
    .blog-banner__button {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 12px;
    }
    
    .blog-banner__feature-icon {
        width: 22px;
        height: 22px;
    }
    
    .blog-banner__character-img {
        width: 28px;
        height: 28px;
    }
}