/* Blog listing + article pages — HOTTEX format */

.bp-hero {
    background:
        radial-gradient(circle at top right, rgba(227, 30, 36, 0.18), transparent 34%),
        linear-gradient(110deg, #111 0%, #1c1c1c 55%, #2a2a2a 100%);
    color: #fff;
    padding: 42px 0 52px;
}

.bp-hero-inner {
    max-width: 920px;
}

.bp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 18px;
}

.bp-article-hero .bp-breadcrumb {
    color: #777;
}

.bp-breadcrumb a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
}

.bp-breadcrumb a:hover {
    color: #e31e24;
}

.bp-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e31e24;
    margin-bottom: 10px;
}

.bp-hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.bp-hero-copy h1 span {
    color: #e31e24;
}

.bp-hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.7;
    max-width: 680px;
}

.bp-section {
    padding: 48px 0 70px;
    background: #f7f7f8;
}

.bp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin: 36px 0 22px;
    flex-wrap: wrap;
}

.bp-section-head h2 {
    margin: 0 0 6px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.bp-section-head p {
    margin: 0;
    color: #666;
}

.bp-featured {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.bp-featured:hover {
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.08);
}

.bp-featured-media {
    min-height: 320px;
    background: #111;
}

.bp-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bp-featured-copy {
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.bp-featured-copy h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
}

.bp-featured-copy p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.bp-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bp-tag {
    background: #111;
    color: #fff;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bp-card-media .bp-tag {
    position: absolute;
    left: 12px;
    top: 12px;
}

.bp-read {
    color: #e31e24;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
}

.bp-read:hover {
    text-decoration: underline;
}

.bp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bp-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.2s ease;
}

.bp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
}

.bp-card-media {
    position: relative;
    display: block;
    height: 180px;
    background: #f0f0f0;
    overflow: hidden;
}

.bp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bp-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.bp-card-body h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    min-height: 2.7em;
}

.bp-card-body h3 a {
    color: inherit;
    text-decoration: none;
}

.bp-card-body h3 a:hover {
    color: #e31e24;
}

.bp-card-body p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.bp-empty {
    grid-column: 1 / -1;
    text-align: center;
    background: #fff;
    border: 1px dashed #ddd;
    border-radius: 16px;
    padding: 48px 20px;
}

.bp-empty i {
    font-size: 32px;
    color: #e31e24;
    margin-bottom: 12px;
}

.bp-pagination {
    margin-top: 28px;
}

/* Article */
.bp-article-page {
    background: #f7f7f8;
}

.bp-article-hero {
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 28px 0 0;
}

.bp-article-head {
    max-width: 820px;
    margin-bottom: 24px;
}

.bp-article-head h1 {
    margin: 12px 0 10px;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    color: #111;
}

.bp-article-lead {
    margin: 0;
    color: #555;
    font-size: 17px;
    line-height: 1.7;
}

.bp-article-cover {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    max-height: 420px;
    background: #111;
}

.bp-article-cover img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.bp-article-body-wrap {
    padding-top: 36px;
}

.bp-article-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 24px;
    align-items: start;
}

.bp-article-content {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 28px 30px;
    color: #444;
    font-size: 16px;
    line-height: 1.8;
}

.bp-article-content h2,
.bp-article-content h3 {
    color: #111;
    font-weight: 800;
    margin-top: 1.4em;
}

.bp-article-content p {
    margin-bottom: 1em;
}

.bp-article-content ul {
    padding-left: 1.2em;
    margin-bottom: 1em;
}

.bp-article-content li {
    margin-bottom: 0.45em;
}

.bp-article-aside {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 90px;
}

.bp-aside-card {
    background: #111;
    color: #fff;
    border-radius: 18px;
    padding: 22px;
}

.bp-aside-card.soft {
    background: #fff;
    color: #222;
    border: 1px solid #ececec;
}

.bp-aside-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 800;
}

.bp-aside-card p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
}

.bp-aside-card.soft p {
    color: #666;
}

.bp-aside-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e31e24;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 999px;
    padding: 11px 16px;
    margin-bottom: 10px;
}

.bp-aside-btn:hover {
    background: #c4181e;
    color: #fff;
}

.bp-aside-link {
    color: #e31e24;
    font-weight: 800;
    text-decoration: none;
    font-size: 14px;
}

.bp-aside-card:not(.soft) .bp-aside-link {
    color: #fff;
}

.bp-related {
    padding-top: 0;
}

@media (max-width: 991px) {
    .bp-featured,
    .bp-article-layout {
        grid-template-columns: 1fr;
    }

    .bp-featured-media {
        min-height: 220px;
    }

    .bp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bp-article-aside {
        position: static;
    }

    .bp-article-cover img {
        height: 280px;
    }
}

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

    .bp-featured-copy {
        padding: 22px 18px;
    }

    .bp-article-content {
        padding: 20px 18px;
    }
}
