/**
 * Bundle Backlinks - Frontend Styles
 * Version: 1.2.0
 */

/* --- Главный контейнер блока --- */
.post-bundles-section {
    margin: 1.5rem 0 0 0;
    padding: 1.0rem;
    background: #f6f5f37a;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

/* --- Верхняя цветная полоска-акцент --- */
.post-bundles-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #fc6336, #FF9800);
}

/* --- Заголовок секции (h4) --- */
.post-bundles-section h4 {
    margin: 0 0 1rem 0;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Иконка-эмодзи перед заголовком --- */
.post-bundles-section h4::before {
    content: "🏷️";
    font-size: 1rem;
}

/* --- Список бандлов (ul) --- */
.bundle-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* --- Элемент списка (li) --- */
.bundle-list li {
    margin: 0;
    padding: 0;
}

/* --- Ссылка на бандл (a) --- */
.bundle-list a {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* --- Эффекты при наведении и фокусе --- */
.bundle-list a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #82b440;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.bundle-list a:hover {
    background: #f9f4f1;
    border-color: #cbd5e1;
    color: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
}

.bundle-list a:hover::before {
    transform: scaleY(1);
}


/* --- Анимация появления блока --- */
.post-bundles-section {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Адаптивность: Мобильные устройства (до 640px) --- */
@media (max-width: 640px) {
    .post-bundles-section {
        margin: 1.5rem -1rem; /* Растягиваем на всю ширину контента */
        padding: 1rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .post-bundles-section h4 {
        font-size: 0.875rem;
    }

    .bundle-list a {
        padding: 0.625rem;
        font-size: 0.875rem;
    }
}

/* --- Адаптивность: Горизонтальная прокрутка на планшетах/десктопах (от 768px) --- */
@media (min-width: 768px) {
    .post-bundles-section.horizontal-scroll .bundle-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 1rem;
        padding-bottom: 0.5rem; /* Место для скроллбара */
        scrollbar-width: thin;
        scrollbar-color: #cbd5e1 transparent;
    }

    .post-bundles-section.horizontal-scroll .bundle-list::-webkit-scrollbar {
        height: 4px;
    }

    .post-bundles-section.horizontal-scroll .bundle-list::-webkit-scrollbar-track {
        background: transparent;
    }

    .post-bundles-section.horizontal-scroll .bundle-list::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 2px;
    }

    .post-bundles-section.horizontal-scroll .bundle-list li {
        flex-shrink: 0; /* Предотвращает сжатие элементов */
        min-width: 200px;
    }
}

/* --- Доступность: Режим высокой контрастности --- */
@media (prefers-contrast: high) {
    .post-bundles-section,
    .bundle-list a {
        border-width: 2px;
        border-color: #000;
    }

    .bundle-list a:hover {
        background: #e2e8f0;
        color: #000;
    }
}

/* --- Доступность: Отключение анимации --- */
@media (prefers-reduced-motion: reduce) {
    .post-bundles-section,
    .bundle-list a {
        animation: none;
        transition: none;
    }

    .bundle-list a:hover {
        transform: none;
    }
}