/* PlatPlus marketing blog (public) */
body.pp-home.pp-blog {
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(94, 234, 212, 0.08), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 20%, rgba(123, 97, 255, 0.07), transparent 50%),
        #050505;
}

.pp-blog-hero {
    padding: 4.25rem 0 2rem;
}

.pp-blog-hero-kicker {
    display: inline-block;
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #5eead4;
}

.pp-blog-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1.25;
    max-width: 18ch;
}

.pp-blog-hero p {
    color: rgba(255, 255, 255, 0.68);
    max-width: 34rem;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.75;
}

.pp-blog-list {
    padding-bottom: 4rem;
}

/* Featured: latest post — full-width single row */
.pp-blog-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 0;
    min-height: 320px;
    margin-bottom: 1.75rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    text-decoration: none !important;
    color: #fff !important;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.pp-blog-featured:hover {
    border-color: rgba(94, 234, 212, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
}

.pp-blog-featured-media {
    min-height: 280px;
    background:
        radial-gradient(circle at 30% 30%, rgba(94, 234, 212, 0.4), transparent 55%),
        linear-gradient(145deg, #0f2a22, #12101f);
    background-size: cover;
    background-position: center;
    position: relative;
}

.pp-blog-featured-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 55%, rgba(5, 5, 5, 0.35));
    pointer-events: none;
}

.pp-blog-featured-body {
    padding: clamp(1.35rem, 3vw, 2.25rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
}

.pp-blog-featured-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 0.9rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.pp-blog-featured-meta > span:not(.pp-blog-pill),
.pp-blog-featured-meta time {
    color: rgba(255, 255, 255, 0.55);
}

.pp-blog-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(94, 234, 212, 0.15);
    color: #5eead4 !important;
    font-weight: 800;
    font-size: 0.72rem;
}

.pp-blog-featured h2 {
    font-size: clamp(1.45rem, 2.8vw, 2.05rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.pp-blog-featured p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.pp-blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none !important;
    color: #fff !important;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    min-height: 100%;
}

.pp-blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(94, 234, 212, 0.32);
    background: rgba(255, 255, 255, 0.055);
}

.pp-blog-card-cover {
    aspect-ratio: 16 / 10;
    background:
        radial-gradient(circle at 30% 30%, rgba(94, 234, 212, 0.35), transparent 50%),
        linear-gradient(145deg, #10261c, #0b1220);
    background-size: cover;
    background-position: center;
}

.pp-blog-card-body {
    padding: 1.15rem 1.2rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
}

.pp-blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #5eead4;
    font-weight: 700;
}

.pp-blog-card-date {
    color: #94a3b8 !important;
    font-weight: 500 !important;
}

.pp-blog-card h2,
.pp-blog-card h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.45;
}

.pp-blog-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pp-blog-card-more {
    margin-top: 0.35rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #5eead4;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pp-blog-featured .pp-blog-card-more {
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.pp-blog-pager {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.pp-blog-page {
    min-width: 2.4rem;
    height: 2.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pp-blog-page:hover {
    border-color: rgba(94, 234, 212, 0.4);
    color: #fff !important;
}

.pp-blog-page.is-on {
    background: #fff;
    color: #0f172a !important;
    border-color: #fff;
}

.pp-blog-article {
    padding: 3.5rem 0 4rem;
}

.pp-blog-article-inner {
    max-width: 760px;
    margin: 0 auto;
}

.pp-blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.pp-blog-article-meta span {
    color: #5eead4;
    font-weight: 700;
}

.pp-blog-article h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin: 0 0 1rem;
}

.pp-blog-article-excerpt {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.pp-blog-article-cover {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    aspect-ratio: 16 / 9;
    background: #111;
}

.pp-blog-article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pp-blog-content {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.9;
}

.pp-blog-content h2,
.pp-blog-content h3 {
    color: #fff;
    font-weight: 800;
    margin: 2rem 0 0.85rem;
}

.pp-blog-content p { margin: 0 0 1rem; }
.pp-blog-content ul,
.pp-blog-content ol { margin: 0 0 1.25rem; padding-inline-start: 1.25rem; }
.pp-blog-content a { color: #5eead4; }
.pp-blog-content blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border-inline-start: 3px solid #5eead4;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 0 12px 12px 0;
    color: rgba(255, 255, 255, 0.9);
}
.pp-blog-content .bp-callout {
    margin: 1.5rem 0;
    padding: 1rem 1.15rem;
    border-radius: 14px;
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid rgba(94, 234, 212, 0.25);
}

.pp-blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.pp-blog-back:hover { color: #fff !important; }

/* Landing teaser */
.pp-home-blog-head {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.pp-home-blog-head h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 900;
    margin: 0;
    color: #fff;
}

.pp-home-blog-head p {
    margin: 0.4rem 0 0;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 991.98px) {
    .pp-blog-featured {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .pp-blog-featured-media {
        min-height: 200px;
        aspect-ratio: 16 / 10;
    }
    .pp-blog-featured-media::after {
        background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 5, 0.5));
    }
    .pp-blog-grid { grid-template-columns: 1fr; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .pp-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
