/* ── Cross-Promo Cards ───────────────────────────────────────────────── */

.en-cross-promo {
    margin: 2.5em 0;
    padding: 24px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.en-cross-promo__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 16px;
}

.en-cross-promo__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.en-cross-promo__card {
    display: flex;
    gap: 16px;
    padding: 12px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.en-cross-promo__card:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.en-cross-promo__thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.en-cross-promo__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.en-cross-promo__site {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
}

.en-cross-promo__title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.en-cross-promo__excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Related Posts ───────────────────────────────────────────────────── */

.en-related-posts {
    margin-top: 3em;
    padding-top: 2em;
    border-top: 1px solid #e8e8e8;
}

.en-related-posts__heading {
    font-size: 20px !important;
    font-weight: 600;
    margin-bottom: 1.25em !important;
    margin-top: 0 !important;
    color: #1a1a1a;
}

.en-related-posts__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.en-related-posts__card {
    text-decoration: none;
    color: inherit;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.en-related-posts__card:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.en-related-posts__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.en-related-posts__title {
    font-size: 15px !important;
    font-weight: 600;
    line-height: 1.3;
    margin: 12px 14px 6px !important;
    color: #1a1a1a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.en-related-posts__card .en-reading-time {
    display: block;
    margin: 0 14px 12px;
}

/* ── Infinite Scroll ────────────────────────────────────────────────── */

.en-post-separator {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 3em auto;
    max-width: 200px;
}

.en-infinite-post {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.en-infinite-hero {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1.5em;
}

.en-infinite-header {
    margin-bottom: 2em;
}

.en-infinite-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #1a1a1a;
}

.en-infinite-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #888;
}

.en-infinite-scroll-loader {
    text-align: center;
    padding: 2em 0;
    color: #888;
    font-size: 14px;
}

.en-infinite-scroll-end {
    text-align: center;
    padding: 2.5em 0;
    color: #999;
    font-style: italic;
    font-size: 14px;
    border-top: 1px solid #eee;
    margin-top: 2em;
}

/* ── Responsive ─────────────────────────────────────────────────────── */

@media (max-width: 600px) {
    .en-cross-promo__card {
        flex-direction: column;
    }

    .en-cross-promo__thumb {
        width: 100%;
        height: 160px;
    }

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

    .en-infinite-title {
        font-size: 26px;
    }

    .en-infinite-post {
        padding: 0 16px;
    }
}
