/**
 * BigBen CRM — Article & Blog Styles
 * Styles for blog listing and single article pages
 *
 * Note: Breadcrumb base styles (.breadcrumbs, .nav-offset) are in main.css
 */

/* ============================================
   Articles List Page
   ============================================ */

.section--articles-header {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.articles-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.articles-header__title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

.articles-header__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Category Filter */
.articles-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.articles-filter__item {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    background-color: var(--primary-pale);
    border-radius: 100px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.articles-filter__item:hover {
    color: var(--primary);
    background-color: rgba(237, 83, 138, 0.1);
}

.articles-filter__item.is-active {
    color: white;
    background-color: var(--primary);
}

/* Articles Grid */
.section--articles-grid {
    padding-top: 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.articles-empty {
    text-align: center;
    padding: 4rem 0;
    color: var(--text-light);
}

.articles-empty p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Article Card */
.article-card {
    background-color: var(--card-bg);
    border: 1px solid rgba(45, 49, 66, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.article-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-pale), #f0f4ff);
}

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

.article-card:hover .article-card__image img {
    transform: scale(1.05);
}

.article-card__content {
    padding: 1.5rem;
}

.article-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.article-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    font-family: var(--font-display);
}

.article-card__title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card__title a:hover {
    color: var(--primary);
}

.article-card__excerpt {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    opacity: 0.7;
}

.article-card__read-time::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: currentColor;
    border-radius: 50%;
    margin-right: 0.75rem;
    vertical-align: middle;
}

/* ============================================
   Blog CTA Block
   ============================================ */

.section--blog-cta,
.section--article-cta {
    padding: 2rem 0 4rem;
}

.blog-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a2e 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.blog-cta__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
    margin-bottom: 1rem;
}

.blog-cta__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.blog-cta .btn-primary {
    background: var(--primary);
    color: white;
}

.blog-cta .btn-primary:hover {
    background: var(--primary-light);
}

/* ============================================
   Single Article Page
   ============================================ */

.article {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.article__header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.article__category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 1rem;
    text-decoration: none;
}

.article__category:hover {
    color: var(--primary-dark);
}

.article__title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.article__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.article__read-time::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: var(--text-light);
    border-radius: 50%;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.article__excerpt {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Article Layout with Sidebar */
.article__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 1100px) {
    .article__layout {
        grid-template-columns: 240px 1fr;
        max-width: 1100px;
    }

    .article__layout--no-sidebar {
        grid-template-columns: 1fr;
        max-width: 820px;
    }
}

/* Sidebar */
.article__sidebar {
    order: 2;
}

@media (min-width: 1100px) {
    .article__sidebar {
        order: 1;
        position: sticky;
        top: 100px;
        align-self: start;
    }
}

/* Sidebar CTA Block */
.sidebar-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a1a2e 100%);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1rem;
}

.sidebar-cta__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.sidebar-cta__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.sidebar-cta__icon svg {
    width: 100%;
    height: 100%;
}

.sidebar-cta__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-cta__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.sidebar-cta__subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-cta__btn {
    display: block;
    background: var(--primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(237, 83, 138, 0.3);
}

.sidebar-cta__btn:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(237, 83, 138, 0.4);
    color: white;
}

@media (max-width: 1099px) {
    .sidebar-cta {
        display: none;
    }
}

/* Table of Contents */
.article-toc {
    background-color: var(--primary-pale);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}

.article-toc__title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
}

.article-toc__list {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-toc__item {
    line-height: 1.4;
}

.article-toc__item--level-3 {
    padding-left: 1rem;
}

.article-toc__link {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-light);
    text-decoration: none;
    padding: 0.25rem 0;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
    transition: all 0.2s ease;
}

.article-toc__link:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}

.article-toc__link.is-active {
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 500;
}

/* Article Content */
.article__content {
    order: 1;
    min-width: 0;
}

@media (min-width: 1100px) {
    .article__content {
        order: 2;
    }
}

.article__featured-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article__featured-image img {
    width: 100%;
    height: auto;
}

/* Article Body - Typography */
.article__body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
}

.article__body > * {
    margin-bottom: 1.25rem;
}

.article__body > *:last-child {
    margin-bottom: 0;
}

.article__body h2 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    color: var(--text);
}

.article__body h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.article__body h2:first-child,
.article__body h3:first-child {
    margin-top: 0;
    padding-top: 0;
}

.article__body p {
    margin-bottom: 1rem;
    color: var(--text);
}

.article__body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.article__body a:hover {
    color: var(--primary-dark);
}

.article__body strong {
    font-weight: 600;
    color: var(--text);
}

.article__body ul,
.article__body ol {
    padding-left: 1.75rem;
    margin-bottom: 1.25rem;
}

.article__body ul {
    list-style-type: disc;
}

.article__body ol {
    list-style-type: decimal;
}

.article__body li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
    line-height: 1.7;
}

.article__body li::marker {
    color: var(--primary);
}

.article__body blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--primary-pale);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article__body blockquote p {
    margin-bottom: 0;
    color: var(--text);
    font-style: italic;
}

.article__body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 1.25rem 0;
}

.article__body figure {
    margin: 1.5rem 0;
}

.article__body figcaption {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 0.5rem;
}

.article__body code {
    font-family: 'SF Mono', Monaco, 'Courier New', monospace;
    font-size: 0.9em;
    background-color: var(--primary-pale);
    padding: 0.2em 0.4em;
    border-radius: 6px;
}

.article__body pre {
    background-color: var(--secondary);
    color: #e2e8f0;
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 1.25rem 0;
}

.article__body pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}

/* Article Tables — horizontal scroll on mobile */
.article__body .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: var(--radius-sm);
}

.article__body table {
    width: 100%;
    min-width: 480px;
    border-collapse: collapse;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin: 0;
}

.article__body > table {
    margin: 1.5rem 0;
}

.article__body thead {
    background: var(--secondary);
    color: white;
}

.article__body th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
}

.article__body td {
    padding: 0.625rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(45, 49, 66, 0.08);
}

.article__body tbody tr:hover {
    background-color: var(--primary-pale);
}

.article__body tbody tr:last-child td {
    border-bottom: none;
}

/* ============================================
   CTA Block (inside articles)
   ============================================ */

.article__body .cta-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #b02d5a 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.article__body .cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.article__body .cta-block__title {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.article__body .cta-block__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.article__body .cta-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    border-radius: var(--radius-sm);
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.article__body .cta-block__btn:hover {
    background: var(--primary-pale);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

@media (max-width: 768px) {
    .article__body .cta-block {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-md);
    }
}

/* ============================================
   Related Articles
   ============================================ */

.section--related {
    background-color: var(--bg-warm);
    padding: 4rem 0;
}

.related__title {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.related-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .related-articles {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }

    .related-articles {
        grid-template-columns: 1fr;
    }

    .articles-filter {
        gap: 0.375rem;
    }

    .articles-filter__item {
        padding: 0.375rem 0.875rem;
        font-size: 0.8125rem;
    }

    .article__header {
        text-align: left;
    }

    .article__meta {
        justify-content: flex-start;
    }

    .article__excerpt {
        margin: 0;
    }

    .blog-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .article__title {
        font-size: 1.5rem;
    }

    .article-card__content {
        padding: 1.25rem;
    }
}

/* ============================================
   Smart CTA Engine стили вынесены в css/smart-cta.css
   и подключаются глобально через includes/header.php
   ============================================ */

/* ============================================
   Article Checklist (interactive, with localStorage)
   ============================================ */

.article-checklist {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border: 2px solid rgba(45, 49, 66, 0.08);
    border-radius: 16px;
}

.article-checklist__title {
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 1rem;
    color: var(--text, #1a1a2e);
}

.article-checklist .checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(45, 49, 66, 0.06);
    cursor: pointer;
    user-select: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text, #1a1a2e);
}

.article-checklist .checklist-item:last-of-type { border-bottom: none; }

.article-checklist .checklist-item input[type="checkbox"] {
    display: none;
}

.article-checklist .checklist-item .checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 6px;
    border: 2px solid rgba(45, 49, 66, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    margin-top: 1px;
}

.article-checklist .checklist-item input[type="checkbox"]:checked ~ .checkmark {
    background: #059669;
    border-color: #059669;
}

.article-checklist .checklist-item input[type="checkbox"]:checked ~ .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.article-checklist .checklist-item input[type="checkbox"]:checked ~ .text {
    color: #065f46;
}

.article-checklist .checklist-progress {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.article-checklist .checklist-progress__bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, #ecfdf5, #d1fae5);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.article-checklist .checklist-progress__text {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-light, #64748b);
}

/* =========================================
   Blog Shorts — EduGrowth video embeds in articles
   Two variants: .blog-short--moment (single, large),
                 .blog-short-strip (carousel of 2-4 shorts)
   ========================================= */

.blog-short,
.blog-short-strip {
    margin: 2.5rem 0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ebedf0;
}

/* --- Moment variant — speaker above video (left), meta+title+description+CTA (right) --- */

.blog-short--moment {
    display: grid;
    grid-template-columns: minmax(300px, 400px) 1fr;
    gap: 0;
    align-items: stretch;
}

.blog-short__left {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.25rem;
    background: #fafbfc;
    border-right: 1px solid #ebedf0;
}

.blog-short__speaker {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
}

.blog-short__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--primary-pale, #fef6f9);
}

.blog-short__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary, #ed538a);
    background: var(--primary-pale, #fef6f9);
    text-transform: uppercase;
}

.blog-short__speaker-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.blog-short__speaker-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text, #1a1a2e);
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-short__speaker-meta {
    font-size: 0.8125rem;
    color: #6b7280;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.blog-short__video-wrap {
    position: relative;
    background: #0f172a;
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-short__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #0f172a;
}

.blog-short__body {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    min-width: 0;
}

.blog-short__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #64748b;
    flex-wrap: wrap;
}

.blog-short__eyebrow {
    color: var(--primary, #ed538a);
    font-weight: 700;
}

.blog-short__meta-sep {
    opacity: 0.4;
    font-weight: 400;
}

.blog-short__title {
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(1.125rem, 1.7vw, 1.375rem);
    line-height: 1.3;
    margin: 0;
    color: var(--text, #1a1a2e);
}

.blog-short__description {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-short__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary, #ed538a);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s ease;
    align-self: flex-start;
}

.blog-short__cta:hover {
    gap: 8px;
}

@media (max-width: 720px) {
    .blog-short--moment {
        grid-template-columns: 1fr;
    }

    .blog-short__left {
        border-right: none;
        border-bottom: 1px solid #ebedf0;
    }

    .blog-short__body {
        padding: 1.25rem 1.375rem 1.375rem;
        gap: 0.625rem;
    }

    .blog-short__speaker-meta {
        white-space: normal;
    }
}

/* --- Strip variant --- */

.blog-short-strip {
    background: linear-gradient(135deg, #fff 0%, #fef6f9 100%);
    padding: 1.5rem 1.75rem 1.75rem;
}

.blog-short-strip__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.blog-short-strip__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary, #ed538a);
    margin-bottom: 0.375rem;
}

.blog-short-strip__title {
    font-family: var(--font-display, Georgia, serif);
    font-size: 1.125rem;
    line-height: 1.3;
    margin: 0;
    color: var(--text, #1a1a2e);
}

.blog-short-strip__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary, #ed538a);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 100px;
    background: rgba(237, 83, 138, 0.08);
    transition: background 0.2s ease;
}

.blog-short-strip__more:hover {
    background: rgba(237, 83, 138, 0.16);
}

.blog-short-strip__track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.blog-short-strip__item {
    margin: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(45, 49, 66, 0.06);
    display: flex;
    flex-direction: column;
}

.blog-short-strip__item video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f172a;
    display: block;
    object-fit: cover;
}

.blog-short-strip__item figcaption {
    padding: 0.875rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-short-strip__item-title {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text, #1a1a2e);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-short-strip__item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    flex-wrap: wrap;
}

.blog-short-strip__tag {
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(237, 83, 138, 0.1);
    color: var(--primary-dark, #d13d73);
    font-weight: 600;
}

.blog-short-strip__duration {
    color: var(--text-light, #6b7280);
    font-weight: 500;
}

@media (max-width: 768px) {
    .blog-short-strip {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .blog-short-strip__track {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .blog-short-strip__track {
        grid-template-columns: 1fr;
    }
}
