/* ========== ГЛОБАЛЬНЫЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== HEADER ========== */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.header-logo {
    flex-shrink: 0;
    background: #fff;
    padding: 5px 10px 10px 10px !important;
    box-shadow: 2px 2px 20px rgba(0,0,0,0.1);
}

.header-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 90px;
    width: auto;
    max-height: 50px;
}

/* Десктопное меню */
.desktop-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0 auto;
}

.desktop-nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.desktop-nav a:hover {
    color: #4a50e1;
}

/* Выпадающее меню — вертикальный список */
.dropdown {
    position: relative;
}

.dropdown .arrow {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    z-index: 1000;
    overflow: hidden;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    flex-direction: column;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #4a50e1;
    color: white;
}

/* Контакты в хедере */
.header-contacts {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
    transition: color 0.3s;
}

.header-contacts .phone {
    color: #333;
    font-weight: 600;
}

.header-contacts .email {
    color: #666;
    font-size: 12px;
}

.header-contacts .icon {
    width: 14px;
    height: 14px;
}

.header-contacts a:hover {
    color: #4a50e1;
}

/* Бургер */
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
    padding: 5px;
}

.burger span {
    width: 22px;
    height: 2px;
    background: #333;
}

/* Мобильное меню */
.mobile-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 999;
    border-top: 1px solid #eee;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    font-size: 16px;
}

.mobile-dropdown .arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.mobile-dropdown.open .mobile-dropdown-toggle .arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    display: none;
    padding-left: 15px;
    flex-direction: column;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: flex;
}

.mobile-dropdown-menu a {
    font-size: 14px;
    padding: 6px 0;
    border-bottom: none;
}

/* ========== ОСНОВНОЙ КОНТЕНТ ========== */
main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    overflow: visible;
    height: auto;
}

/* ========== СЕТКИ ========== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ========== КАРТОЧКИ КАТЕГОРИЙ И РАБОТ ========== */
/* ПК: 3 карточки в ряд, фиксированная ширина 280px, центрированы */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 280px);
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
}

.card-link {
    text-decoration: none;
    display: block;
}

.card {
    width: 280px;
    border: 1px solid #ccc;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0px 5px 13px -1px rgba(41, 21, 12, 0.37);
}

.card-link:hover .card {
    border-color: #4a50e1;
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px -2px rgba(41, 21, 12, 0.45);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.card-description {
    font-size: 13px;
    line-height: 1.4;
    color: #777;
    margin-bottom: 10px;
}

.card-btn {
    display: block;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    margin-top: auto;
    margin-bottom: -15px;
    padding: 12px 0;
    background: transparent;
    color: #4a50e1;
    border-top: 2px solid #4a50e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    cursor: pointer;
}

.card-link:hover .card-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.card-btn:hover {
    background: #4a50e1;
    color: #fff;
}

/* ========== ПЛАНШЕТЫ (769px - 1024px) ========== */
@media (max-width: 1024px) and (min-width: 769px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 280px);
        gap: 20px;
    }
    .card {
        width: 280px;
    }
}

/* ========== МОБИЛЬНЫЕ УСТРОЙСТВА (до 768px) ========== */
@media (max-width: 768px) {
    /* Хедер – адаптация */
    .desktop-nav {
        display: none !important;
    }
    .header .container {
        height: 70px !important;
        padding: 0 10px;
    }
    .header-logo img {
        height: 45px !important;
    }
    .header-contacts .phone {
        font-size: 14px !important;
    }
    .burger span {
        width: 22px !important;
        height: 3px !important;
    }
    .mobile-menu {
        top: 70px !important;
    }

    /* КАРТОЧКИ: 2 В РЯД, РЕЗИНОВАЯ ШИРИНА */
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .card {
        width: 100% !important;
        border-radius: 12px;
    }
    .card-image {
        height: 140px;
    }
    .card-content h3 {
        font-size: 14px;
    }
    .card-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        font-size: 12px;
        padding: 8px 0;
        border-top: 1px solid #eee;
    }

    /* Другие мобильные стили (текст, галерея) */
    .category-description-full {
        padding-left: 10px;
        padding-right: 10px;
    }
    .category-description-full p,
    .category-description-full ul,
    .category-description-full h2,
    .category-description-full h3 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .category-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .category-gallery img {
        height: 200px;
    }
    .category-works h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    /* STICKY-БЛОК: показываем на мобилках, не липнет */
    .sticky-box {
        display: block;
        position: static;
        margin-top: 30px;
    }
    .advantage-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .advantage-icon-sidebar {
        width: 42px;
        height: 42px;
        margin-bottom: 5px;
    }
    .advantage-card h4 {
        font-size: 15px;
    }
    .advantage-card p {
        font-size: 13px;
    }

    /* Хедер – телефон по центру, бургер справа */
    .header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        height: 60px;
    }
    .header-logo {
        order: 1;
        z-index: 2;
        flex-shrink: 0;
    }
    .header-logo img {
        height: 40px;
    }
    .header-contacts {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        white-space: nowrap;
        margin: 0;
        padding: 0;
        background: transparent;
    }
    .header-contacts .email {
        display: none;
    }
    .header-contacts .phone {
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
    }
    .header-contacts .icon {
        width: 14px;
        height: 14px;
    }
    .burger {
        order: 3;
        display: flex !important;
        margin-left: 0;
        flex-shrink: 0;
        z-index: 2;
    }
}

/* ========== МАЛЕНЬКИЕ ТЕЛЕФОНЫ (до 480px) – 2 КОЛОНКИ (как вы просили) ========== */
@media (max-width: 480px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
    .card-image {
        height: 160px;
    }
    .card-content h3 {
        font-size: 16px;
    }
    .btn-fixed {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ========== ГЕРОЙ-БЛОК ========== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero p {
        font-size: 16px;
    }
}

/* ========== СЕКЦИИ ========== */
.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    .section h2 {
        font-size: 28px;
    }
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 20px;
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
}

/* ========== FAQ АККОРДЕОН ========== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-input {
    display: none;
}

.faq-question {
    display: block;
    background: #f5f5f5;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
    position: relative;
    padding-right: 40px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #4a50e1;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(74, 80, 225, 0.2);
}

.faq-question:hover::after {
    color: white;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.faq-input:checked + .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    padding: 0 20px;
    border-radius: 0 0 8px 8px;
}

.faq-input:checked + .faq-question + .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}

/* ========== КНОПКА "ВСЕ РАБОТЫ" ========== */
.btn-all-works {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #4a50e1;
    border: 2px solid #4a50e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-all-works:hover {
    background: #4a50e1;
    color: #fff;
}

.works .btn-center {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.works .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========== БЛОК CTA ========== */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta .container {
    max-width: 800px;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-phone {
    margin-bottom: 30px;
}

.cta-phone a {
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s;
}

.cta-phone a:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn-whatsapp {
    background: #25D366;
    color: white;
}

.cta-btn-telegram {
    background: #0088cc;
    color: white;
}

.cta-btn-whatsapp:hover,
.cta-btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .cta {
        padding: 40px 0;
    }
    .cta h2 {
        font-size: 28px;
    }
    .cta p {
        font-size: 16px;
    }
    .cta-phone a {
        font-size: 20px;
        padding: 8px 16px;
    }
    .cta-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ========== ФУТЕР ========== */
.footer {
    background: #1a1a1a;
    color: #999;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-col .footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4a50e1;
}

.footer-col p {
    color: #999;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #4a50e1;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #333;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }
    .footer-col {
        text-align: center !important;
    }
    .footer-col .footer-title:after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .footer-col a {
        display: inline-block !important;
        margin: 5px 10px !important;
    }
    .footer-bottom {
        font-size: 12px;
        text-align: center;
    }
}

/* ========== ГАЛЕРЕЯ КАТЕГОРИИ ========== */
.category-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.category-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.category-gallery img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.25);
}

/* ========== ЦЕНА В КАТЕГОРИИ ========== */
.category-price {
    font-weight: 700 !important;
    color: #4a50e1 !important;
    font-size: 24px;
    margin-bottom: 20px;
}

/* ========== STICKY-БЛОК (ПРАВАЯ КОЛОНКА) – ИСПРАВЛЕННАЯ ВЕРСИЯ ========== */
.category-page {
    display: block;
    width: 100%;
    padding: 60px 0;
    background: #fff;
    overflow: visible;
}

.category-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
    overflow: visible;
}

.category-sidebar {
    align-self: start;
    overflow: visible;
}

/* На ПК – sticky работает */
.sticky-box {
    position: sticky;
    top: 90px;
    background: #f9fafb;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 10;
}

.sticky-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
}

.advantage-card {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.advantage-icon-sidebar {
    width: 36px;
    height: 36px;
    opacity: 0.7;
    object-fit: contain;
}

.advantage-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 4px;
}

.advantage-card p {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* Мобильные стили для sticky-box – уже описаны выше в @media (max-width: 768px) */
.category-faq {
    margin-top: 50px;
}

/* ========== ПЛАВАЮЩАЯ КНОПКА ДЛЯ МОБИЛЬНЫХ ========== */
.mobile-fixed-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
}

.btn-fixed {
    display: block;
    padding: 12px 24px;
    background: #4a50e1;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-fixed:hover {
    background: #3a40c0;
    transform: scale(1.02);
}

.btn-fixed:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {
    .mobile-fixed-btn {
        display: block;
    }
}

/* ========== СТРАНИЦА РАБОТЫ ========== */
.work-single {
    padding: 60px 0;
}

.work-single h1 {
    margin-bottom: 30px;
}

.work-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
}

.work-description {
    line-height: 1.8;
    margin-bottom: 40px;
}

.work-description ul,
.work-description ol {
    margin: 15px 0 15px 25px;
}

.work-description li {
    margin-bottom: 5px;
}

.work-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eaeef2;
    flex-wrap: wrap;
}

.work-navigation a,
.work-navigation span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #2c3e50;
}

.work-navigation a {
    background: #f8f9fa;
    color: #4a50e1;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.work-navigation a:hover {
    background: #4a50e1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 80, 225, 0.25);
}

.work-navigation .disabled {
    background: #f1f3f5;
    color: #adb5bd;
    cursor: default;
    opacity: 0.6;
}

.nav-all {
    background: white !important;
    border: 1px solid #e0e4e8;
    color: #4a50e1 !important;
}

.nav-all:hover {
    background: #4a50e1 !important;
    border-color: #4a50e1;
    color: white !important;
}

@media (max-width: 768px) {
    .work-navigation {
        flex-direction: column;
        gap: 12px;
    }
    .work-navigation a,
    .work-navigation span {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
}

/* ========== ПАГИНАЦИЯ (стиль маркетплейса) ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    background: #fff;
    border: 1px solid #e0e4e8;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

/* Ссылки */
.pagination a {
    background: #fff;
    color: #4a50e1;
}

.pagination a:hover {
    background: #4a50e1;
    border-color: #4a50e1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(74, 80, 225, 0.15);
}

/* Текущая страница (активная) */
.pagination .page-current {
    background: #4a50e1;
    border-color: #4a50e1;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(74, 80, 225, 0.2);
}

/* Неактивные кнопки (если есть disabled) */
.pagination .disabled {
    background: #f8f9fa;
    border-color: #e9ecef;
    color: #adb5bd;
    cursor: default;
    pointer-events: none;
    opacity: 0.6;
}

/* Кнопки «Назад» и «Вперёд» (можно дополнительно выделить) */
.pagination .page-link:first-child,
.pagination .page-link:last-child {
    background: #f8f9fa;
    font-weight: 500;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .pagination {
        gap: 8px;
        margin-top: 35px;
    }
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 14px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 6px;
    }
    .pagination a,
    .pagination span {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
        border-radius: 8px;
    }
}