/* ========================================
   DivaRoza — Блог. Главная страница
   ======================================== */

/* ---------- ОТСТУПЫ ДЛЯ КОНТЕЙНЕРА ---------- */
.blog-archive-page .container {
    padding-top: 32px;
    padding-bottom: 32px;
}


/* ---------- ЛАЙАУТ ---------- */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    padding-top: 0;
}

.blog-main {
    min-width: 0;
}

.blog-main .blog-hero {
    margin-bottom: 32px;
}


/* ---------- HERO СЕКЦИЯ ---------- */
.blog-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 0;
    background: #FCF9F7;
}

.blog-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.blog-hero__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.blog-hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    min-height: 320px;
    padding: 48px 56px;
}

.blog-hero__inner {
    max-width: 680px;
    width: 100%;
}

.blog-hero__badge {
    display: inline-block;
    padding: 4px 16px;
    margin-bottom: 16px;
    background: rgba(232, 72, 115, 0.08);
    border: 1px solid rgba(232, 72, 115, 0.12);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #E84873;
}

.blog-hero__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    color: #222222;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.blog-hero__description {
    font-size: 18px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 24px;
    max-width: 540px;
    font-weight: 400;
}

.blog-hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #E84873;
    color: #FFFFFF;
    border: none;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232, 72, 115, 0.25);
}

.blog-hero__btn:hover {
    background: #D53A66;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(232, 72, 115, 0.35);
}

.blog-hero__btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.blog-hero__btn:hover svg {
    transform: translateX(4px);
}

.blog-hero__meta {
    font-size: 14px;
    color: #888888;
    font-weight: 400;
}


/* ---------- ФИЛЬТР НАВИГАЦИЯ (ЧИПСЫ) ---------- */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
    margin-bottom: 36px;
}

.blog-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid #ECECEC;
    background: #FFFFFF;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #4A4A4A;
    cursor: pointer;
    transition: background-color 0.22s ease,
                color 0.22s ease,
                border-color 0.22s ease,
                box-shadow 0.22s ease,
                transform 0.22s ease;
    white-space: nowrap;
    max-width: 220px;
    line-height: 40px;
    text-decoration: none;
    outline: none;
}

.blog-filter .ph {
    font-size: 18px;
    stroke-width: 2;
}

.blog-filter:hover:not(.active) {
    background: #FFF3F6;
    border-color: #F2C7D2;
    color: #D73C69;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 72, 115, 0.12);
}

.blog-filter.active {
    background: #E84873;
    color: #FFFFFF;
    border-color: transparent;
}

.blog-filter:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(232, 72, 115, 0.18);
}

/* Stagger-анимация появления */
.blog-filter {
    opacity: 0;
    transform: translateY(8px);
    animation: filterAppear 0.35s ease forwards;
}

.blog-filter:nth-child(1) { animation-delay: 0ms; }
.blog-filter:nth-child(2) { animation-delay: 40ms; }
.blog-filter:nth-child(3) { animation-delay: 80ms; }
.blog-filter:nth-child(4) { animation-delay: 120ms; }
.blog-filter:nth-child(5) { animation-delay: 160ms; }
.blog-filter:nth-child(6) { animation-delay: 200ms; }
.blog-filter:nth-child(7) { animation-delay: 240ms; }
.blog-filter:nth-child(8) { animation-delay: 280ms; }

@keyframes filterAppear {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.blog-filter:active:not(.active) {
    transform: scale(0.97);
    transition-duration: 0.12s;
}


/* ---------- СЕТКА СТАТЕЙ (2 колонки) ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}


/* ---------- КАРТОЧКА СТАТЬИ ---------- */
.blog-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.10);
}

.blog-card__link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #FAFAFA;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.03);
}

.blog-card__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 48px;
    color: #CCCCCC;
}

.blog-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: #FFFFFF;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #e84873;
    letter-spacing: 0.04em;
}

.blog-card__content {
    padding: 20px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #999999;
    margin-bottom: 8px;
}

.blog-card__meta .ph {
    font-size: 14px;
    vertical-align: middle;
}

.blog-card__dot {
    color: #DDDDDD;
}

.blog-card__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #222222;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-card__read-more {
    font-size: 15px;
    font-weight: 600;
    color: #E84873;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.blog-card__read-more .ph {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.blog-card__link:hover .blog-card__read-more .ph {
    transform: translateX(4px);
}

.blog-card__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666666;
}

.blog-card__empty-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}


/* ---------- ПАГИНАЦИЯ ---------- */
.blog-pagination {
    margin-top: 48px;
    text-align: center;
}

.blog-pagination ul {
    display: inline-flex;
    list-style: none;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.blog-pagination li {
    display: inline-block;
}

.blog-pagination a,
.blog-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    border: 1px solid #ECECEC;
    background: #FFFFFF;
    transition: all 0.2s ease;
}

.blog-pagination a:hover {
    background: #FFF3F6;
    border-color: #E84873;
}

.blog-pagination .current {
    background: #E84873;
    color: #FFFFFF;
    border-color: #E84873;
}

.blog-pagination .dots {
    border: none;
    background: transparent;
}


/* ---------- САЙДБАР (десктоп) ---------- */
.blog-sidebar {
    position: sticky;
    top: 24px;
}

.sidebar-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.sidebar-card:last-child {
    margin-bottom: 0;
}

.sidebar-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FFF4F6;
}

.sidebar-card__categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card__categories li {
    margin-bottom: 4px;
}

.sidebar-card__categories li:last-child {
    margin-bottom: 0;
}

.sidebar-card__categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #666666;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-card__categories a:hover {
    background: #FFF4F6;
    color: #222222;
}

.sidebar-card__categories a.active {
    background: #FFF4F6;
    color: #E84873;
    font-weight: 600;
}

.sidebar-card__count {
    font-size: 13px;
    font-weight: 500;
    color: #999999;
    background: #FAFAFA;
    padding: 2px 8px;
    border-radius: 999px;
}

.sidebar-card__categories a.active .sidebar-card__count {
    background: #E84873;
    color: #FFFFFF;
}

.sidebar-card__posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card__post {
    padding: 12px 0;
    border-bottom: 1px solid #ECECEC;
}

.sidebar-card__post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-card__post-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.sidebar-card__post-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #FAFAFA;
}

.sidebar-card__post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-card__post-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #CCCCCC;
}

.sidebar-card__post-info {
    flex: 1;
    min-width: 0;
}

.sidebar-card__post-title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    color: #222222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-card__post-meta {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #999999;
    margin-top: 2px;
}

.sidebar-card__post-link:hover .sidebar-card__post-title {
    color: #E84873;
}

.sidebar-card__products {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-card__product {
    padding: 10px 0;
    border-bottom: 1px solid #ECECEC;
}

.sidebar-card__product:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-card__product-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.sidebar-card__product-thumb {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #FAFAFA;
}

.sidebar-card__product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-card__product-info {
    flex: 1;
    min-width: 0;
}

.sidebar-card__product-title {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-card__product-price {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #E84873;
    margin-top: 2px;
}

.sidebar-card__product-link:hover .sidebar-card__product-title {
    color: #E84873;
}

.sidebar-card--cta {
    padding: 0;
    overflow: hidden;
    border: 1px solid #ECECEC;
    background: #FFFFFF;
}

.sidebar-card__cta-content {
    padding: 24px 20px;
    text-align: center;
}

.sidebar-card__cta-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.sidebar-card__cta-title {
    font-size: 18px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 12px;
}

.sidebar-card__cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    text-align: left;
}

.sidebar-card__cta-features li {
    font-size: 15px;
    font-weight: 400;
    color: #666666;
    padding: 4px 0;
}

.sidebar-card__cta-features li:first-child {
    padding-top: 0;
}

.sidebar-card__cta-btn {
    width: 100%;
    text-align: center;
}


/* ---------- SEO-БЛОК ---------- */
.blog-seo {
    margin-top: 48px;
    padding: 32px 0;
    border-top: 1px solid #ECECEC;
}

.blog-seo__content {
    max-width: 1000px;
    margin: 0 auto;
}

.blog-seo__content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #222222;
    margin: 0 0 16px;
}

.blog-seo__content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 14px;
}

.blog-seo__content p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   МОБИЛЬНЫЙ САЙДБАР (CANVAS)
   ============================================================ */

/* ---------- КНОПКА ОТКРЫТИЯ ---------- */
.blog-mobile-toggle {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #E84873;
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(232, 72, 115, 0.35);
    transition: all 0.25s ease;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.blog-mobile-toggle:hover {
    transform: scale(1.05);
    background: #D53A66;
}

.blog-mobile-toggle svg {
    width: 24px;
    height: 24px;
}


/* ---------- ОВЕРЛЕЙ ---------- */
.blog-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.blog-mobile-overlay.blog-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}


/* ---------- ДРАВЕР ---------- */
.blog-mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    z-index: 99999;
    background: #FFFFFF;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    padding: 0 20px 32px;
    pointer-events: none;
}

.blog-mobile-drawer.blog-open {
    right: 0;
    pointer-events: all;
}


/* ---------- ШАПКА ДРАВЕРА ---------- */
.blog-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 16px;
    border-bottom: 1px solid #ECECEC;
    position: sticky;
    top: 0;
    background: #FFFFFF;
    z-index: 10;
}

.blog-mobile-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #222222;
}


/* ---------- КНОПКА ЗАКРЫТИЯ ---------- */
.blog-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F5F5F5;
    border: none;
    color: #222222;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.blog-mobile-close:hover {
    background: #FFF4F6;
    color: #E84873;
}

.blog-mobile-close svg {
    width: 20px;
    height: 20px;
}


/* ---------- КОНТЕНТ ДРАВЕРА ---------- */
.blog-mobile-content .sidebar-card {
    border: none;
    box-shadow: none;
    padding: 16px 0;
    margin-bottom: 0;
    border-radius: 0;
}

.blog-mobile-content .sidebar-card:last-child {
    border-bottom: none;
}

.blog-mobile-content .sidebar-card__title {
    padding-bottom: 10px;
    margin-bottom: 12px;
}

.blog-mobile-content .sidebar-card--cta {
    padding: 16px 0;
    border: none;
}

.blog-mobile-content .sidebar-card--cta .sidebar-card__cta-content {
    padding: 0;
}


/* ============================================================
   АДАПТИВ
   ============================================================ */

/* ---------- 1200px ---------- */
@media (max-width: 1200px) {
    .blog-hero__title {
        font-size: 40px;
    }
    .blog-hero__content {
        padding: 40px 44px;
    }
    .blog-grid {
        gap: 24px;
    }
}

/* ---------- 992px ---------- */
@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar {
        display: none;
    }
    
    .blog-mobile-toggle {
        display: flex;
    }
    
    .blog-hero {
        min-height: 280px;
        border-radius: 20px;
    }
    .blog-hero__content {
        min-height: 280px;
        padding: 32px 36px;
    }
    .blog-hero__title {
        font-size: 34px;
    }
    .blog-hero__description {
        font-size: 17px;
    }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
    .blog-archive-page .container {
        padding-top: 17px;
        padding-bottom: 17px;
    }
    
    .blog-hero {
        min-height: 240px;
        border-radius: 16px;
    }
    .blog-hero__content {
        min-height: 240px;
        padding: 24px 28px;
    }
    .blog-hero__title {
        font-size: 28px;
    }
    .blog-hero__description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .blog-hero__badge {
        font-size: 11px;
        padding: 3px 14px;
        margin-bottom: 12px;
    }
    .blog-hero__btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    .blog-hero__meta {
        font-size: 13px;
    }
    .blog-hero__actions {
        gap: 14px;
    }
    
    .blog-filters {
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 28px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .blog-filters::-webkit-scrollbar {
        display: none;
    }
    .blog-filter {
        font-size: 14px;
        padding: 0 16px;
        height: 36px;
        line-height: 36px;
        flex-shrink: 0;
    }
    .blog-filter .ph {
        font-size: 16px;
    }
    
    .blog-grid {
        gap: 20px;
    }
    
    .blog-card__image {
        height: 200px;
    }
    
    .blog-mobile-drawer {
        max-width: 320px;
        padding: 0 16px 24px;
    }
    .blog-mobile-toggle {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
    .blog-mobile-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* ---------- 600px ---------- */
@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card__image {
        height: 200px;
    }
}

/* ---------- 480px ---------- */
@media (max-width: 480px) {
    .blog-archive-page .container {
        padding-top: 17px;
        padding-bottom: 17px;
    }
    
    .blog-hero {
        min-height: 200px;
        border-radius: 12px;
    }
    .blog-hero__content {
        min-height: 200px;
        padding: 16px 18px;
    }
    .blog-hero__title {
        font-size: 22px;
    }
    .blog-hero__description {
        font-size: 14px;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .blog-hero__badge {
        font-size: 10px;
        padding: 2px 12px;
        margin-bottom: 8px;
    }
    .blog-hero__btn {
        padding: 10px 18px;
        font-size: 13px;
        gap: 6px;
    }
    .blog-hero__btn svg {
        width: 15px;
        height: 15px;
    }
    .blog-hero__meta {
        font-size: 12px;
        display: block;
        width: 100%;
    }
    .blog-hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .blog-filters {
        gap: 8px;
        margin-top: 16px;
        margin-bottom: 24px;
    }
    .blog-filter {
        font-size: 13px;
        padding: 0 14px;
        height: 34px;
        line-height: 34px;
    }
    .blog-filter .ph {
        font-size: 15px;
    }
    
    .blog-pagination a,
    .blog-pagination span {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .blog-card__image {
        height: 180px;
    }
    .blog-card__content {
        padding: 16px 16px 20px;
    }
    .blog-card__title {
        font-size: 16px;
    }
    .blog-card__excerpt {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    
    .blog-seo {
        margin-top: 24px;
        padding: 20px 0;
    }
    .blog-seo__content h2 {
        font-size: 20px;
    }
    .blog-seo__content p {
        font-size: 14px;
    }
    
    .blog-mobile-drawer {
        max-width: 100%;
        padding: 0 16px 20px;
    }
    .blog-mobile-toggle {
        bottom: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
    }
    .blog-mobile-toggle svg {
        width: 18px;
        height: 18px;
    }
    .blog-mobile-header {
        padding: 16px 0 12px;
    }
    .blog-mobile-title {
        font-size: 16px;
    }
    .blog-mobile-close {
        width: 36px;
        height: 36px;
    }
    .blog-mobile-close svg {
        width: 18px;
        height: 18px;
    }
    .blog-mobile-content .sidebar-card {
        padding: 12px 0;
    }
}