/* =========================================
   BLOG — post pages and listing cards
   ========================================= */

/* ----- Article page ----- */
.bp-article {
    background: #FFFFFF;
    padding: 72px 24px 96px;
}

.bp-container {
    max-width: 720px;
    margin: 0 auto;
}

.bp-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(26, 10, 60, 0.5);
    margin-bottom: 34px;
}

.bp-meta .bp-cat {
    color: #B8860B;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 700;
}

.bp-graphic {
    margin: 0 0 44px;
    border-radius: 18px;
    overflow: hidden;
    line-height: 0;
}

.bp-graphic svg,
.bp-graphic img {
    width: 100%;
    height: auto;
    display: block;
}

.bp-article h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: #1A0A3C;
    margin: 44px 0 16px;
}

.bp-article p {
    font-family: var(--font-body);
    font-size: 1.06rem;
    line-height: 1.85;
    color: rgba(26, 10, 60, 0.82);
    margin: 0 0 22px;
}

.bp-article p strong {
    color: #1A0A3C;
}

.bp-pull {
    border-left: 3px solid #FDB71A;
    padding: 4px 0 4px 24px;
    margin: 34px 0;
}

.bp-pull p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #1A0A3C;
    margin: 0;
}

.bp-footnote {
    margin-top: 36px;
    padding: 18px 20px;
    background: rgba(253, 183, 26, 0.08);
    border-left: 3px solid #FDB71A;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(26, 10, 60, 0.75);
}

.bp-signoff {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(26, 10, 60, 0.12);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(26, 10, 60, 0.6);
}

.bp-cta {
    margin-top: 40px;
    background:
        radial-gradient(420px 240px at 85% 0%, rgba(253, 183, 26, 0.12), transparent 65%),
        #1A0A3C;
    border-radius: 18px 4px 18px 18px;
    padding: 36px 38px;
}

.bp-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 10px;
}

.bp-cta p {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 22px;
}

.bp-cta a {
    display: inline-block;
    padding: 12px 30px;
    background: #FDB71A;
    color: #1A0A3C;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.bp-cta a:hover {
    background: #FFD460;
}

/* ----- Listing cards on blog.html ----- */
.bp-list-section {
    background: #160830;
    padding: 84px 32px 100px;
}

.bp-list {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bp-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px 4px 18px 18px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.bp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(253, 183, 26, 0.45);
}

.bp-card-graphic {
    line-height: 0;
}

.bp-card-graphic svg,
.bp-card-graphic img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.bp-card-body {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bp-card-date {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FDB71A;
    margin: 0 0 12px;
}

.bp-card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 10px;
}

.bp-card-excerpt {
    font-family: var(--font-body);
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 18px;
    flex-grow: 1;
}

.bp-card-read {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: #FDB71A;
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
    .bp-list { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 640px) {
    .bp-article { padding: 52px 20px 64px; }
    .bp-cta { padding: 28px 24px; }
    .bp-list-section { padding: 56px 20px 72px; }
}
