/*=================================================
BIDUNYABILET - BPCS v2.0
Premium Blog Content System
Clean / Wide / Icon-Based / No Green / No Color Stripes
=================================================*/

:root{
    --bpcs-primary:#0f2744;
    --bpcs-primary-2:#18395f;
    --bpcs-dark:#101828;
    --bpcs-text:#475467;
    --bpcs-muted:#667085;
    --bpcs-soft:#f8fafc;
    --bpcs-soft-2:#f6f8fb;
    --bpcs-white:#ffffff;
    --bpcs-border:#e5e7eb;
    --bpcs-border-soft:#eef2f6;
    --bpcs-accent:#f5b301;
    --bpcs-accent-soft:#fff7dc;
    --bpcs-radius:24px;
    --bpcs-radius-lg:32px;
    --bpcs-shadow:0 10px 30px rgba(15,23,42,.06);
    --bpcs-shadow-hover:0 16px 38px rgba(15,23,42,.08);
}

/*=================================================
READING PROGRESS
=================================================*/

.bd-reading-progress{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:rgba(15,39,68,.08);
    z-index:99999;
}

.bd-reading-progress span{
    display:block;
    width:0;
    height:100%;
    background:linear-gradient(90deg,#f5b301,#ffcf4d);
    transition:width .12s linear;
}

/*=================================================
PAGE BASE
=================================================*/

.bd-blog-premium{
    background:#ffffff;
}

.bd-blog-premium .container{
    width:min(96%, 1600px) !important;
    max-width:1600px !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

/*=================================================
HERO
=================================================*/

.bd-blog-hero{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at 85% 10%, rgba(245,179,1,.18), transparent 30%),
        linear-gradient(135deg,#0f2744,#18395f);
    color:#ffffff;
    padding:76px 0 66px;
}

.bd-blog-hero .container{
    position:relative;
    z-index:2;
}

.bd-blog-hero-grid{
    display:grid;
    grid-template-columns:minmax(0,1.45fr) minmax(330px,.55fr);
    gap:44px;
    align-items:center;
}

.bd-blog-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 14px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.22);
    color:#ffffff;
    font-size:13px;
    font-weight:900;
    letter-spacing:.02em;
}

.bd-blog-badge::before{
    content:"✈️";
    font-size:15px;
}

.bd-blog-hero h1{
    max-width:1050px;
    margin:18px 0 16px;
    color:#ffffff;
    font-size:clamp(38px,4.8vw,66px);
    line-height:1.06;
    letter-spacing:-.048em;
}

.bd-blog-hero p{
    max-width:920px;
    margin:0;
    color:rgba(255,255,255,.88);
    font-size:19px;
    line-height:1.82;
}

.bd-blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:26px;
}

.bd-blog-meta span{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    color:rgba(255,255,255,.92);
    font-size:13px;
    font-weight:850;
}

.bd-blog-meta span:nth-child(1)::before{content:"📅";}
.bd-blog-meta span:nth-child(2)::before{content:"⏱️";}
.bd-blog-meta span:nth-child(3)::before{content:"📝";}

.bd-blog-hero-card{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.18);
    border-radius:28px;
    padding:20px;
    backdrop-filter:blur(14px);
    box-shadow:0 22px 55px rgba(0,0,0,.16);
}

.bd-blog-hero-card img{
    width:100%;
    aspect-ratio:16/11;
    object-fit:cover;
    border-radius:22px;
    display:block;
}

.bd-blog-hero-note{
    margin-top:14px;
    color:rgba(255,255,255,.86);
    font-size:14px;
    line-height:1.65;
}

/*=================================================
WIDE LAYOUT
=================================================*/

.bd-blog-layout{
    display:grid;
    grid-template-columns:minmax(0,1080px) 360px;
    gap:52px;
    justify-content:center;
    align-items:start;
    padding:52px 0 76px;
}

.bd-blog-main{
    min-width:0;
}

.bd-blog-content{
    counter-reset:blogSection;
    background:#ffffff;
    border:1px solid var(--bpcs-border);
    border-radius:var(--bpcs-radius-lg);
    padding:52px;
    box-shadow:var(--bpcs-shadow);
    min-width:0;
}

/*=================================================
TYPOGRAPHY
=================================================*/

.bd-blog-content,
.bd-blog-content p,
.bd-blog-content li{
    color:var(--bpcs-text);
    font-size:18px;
    line-height:1.95;
}

.bd-blog-content p{
    margin:0 0 22px;
}

.bd-blog-content strong{
    color:var(--bpcs-dark);
    font-weight:900;
}

.bd-blog-content h2,
.bd-blog-content h3,
.bd-blog-content h4{
    color:var(--bpcs-dark);
    letter-spacing:-.028em;
    line-height:1.22;
}

.bd-blog-content h2{
    position:relative;
    counter-increment:blogSection;
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin:58px 0 20px;
    font-size:clamp(28px,2.7vw,38px);
}

.bd-blog-content h2:first-child{
    margin-top:0;
}

.bd-blog-content h2::before{
    content:counter(blogSection);
    flex:0 0 44px;
    width:44px;
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    color:#0f172a;
    font-size:18px;
    font-weight:950;
    box-shadow:none;
}

.bd-blog-content h3{
    margin:36px 0 12px;
    font-size:25px;
}

.bd-blog-content h4{
    margin:26px 0 10px;
    font-size:21px;
}

.bd-blog-content a{
    color:var(--bpcs-primary);
    font-weight:850;
    text-decoration:none;
    border-bottom:2px solid rgba(245,179,1,.45);
}

.bd-blog-content a:hover{
    border-bottom-color:var(--bpcs-accent);
}

/*=================================================
LISTS
=================================================*/

.bd-blog-content ul,
.bd-blog-content ol{
    margin:22px 0 30px;
    padding-left:0;
    list-style:none;
}

.bd-blog-content li{
    position:relative;
    padding-left:36px;
    margin-bottom:13px;
}

.bd-blog-content li::before{
    content:"";
    position:absolute;
    left:0;
    top:14px;
    width:10px;
    height:10px;
    border-radius:999px;
    background:var(--bpcs-accent);
    box-shadow:0 0 0 5px rgba(245,179,1,.12);
}

/*=================================================
IMAGES
=================================================*/

.bd-blog-content img{
    width:100%;
    height:auto;
    border-radius:26px;
    margin:30px 0;
    box-shadow:var(--bpcs-shadow);
}

/*=================================================
SIDEBAR
=================================================*/

.bd-blog-sidebar{
    position:sticky;
    top:24px;
    display:grid;
    gap:18px;
}

.bd-side-card{
    background:#ffffff;
    border:1px solid var(--bpcs-border);
    border-radius:24px;
    padding:22px;
    box-shadow:var(--bpcs-shadow);
}

.bd-side-card h3{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0 0 14px;
    color:var(--bpcs-dark);
    font-size:18px;
}

.bd-side-card h3::before{
    content:"📌";
    font-size:18px;
}

.bd-side-card p{
    color:var(--bpcs-muted);
    font-size:14px;
    line-height:1.75;
}

.bd-toc,
.bd-related-list{
    display:grid;
    gap:9px;
}

.bd-toc a,
.bd-related-list a{
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding:11px 12px;
    border-radius:15px;
    background:#ffffff;
    border:1px solid var(--bpcs-border-soft);
    color:var(--bpcs-primary);
    font-size:14px;
    font-weight:850;
    line-height:1.45;
    text-decoration:none;
}

.bd-toc a::before{
    content:"→";
    color:var(--bpcs-accent);
    font-weight:950;
}

.bd-related-list a::before{
    content:"✈️";
    font-size:14px;
}

.bd-toc a:hover,
.bd-related-list a:hover{
    background:#f8fafc;
    color:var(--bpcs-primary);
}

/* Sidebar CTA */
.bd-side-cta{
    background:#0f172a !important;
    color:#ffffff;
    box-shadow:0 16px 38px rgba(15,23,42,.12);
}

.bd-side-cta h3,
.bd-side-cta p{
    color:#ffffff;
}

.bd-side-cta h3::before{
    content:"🚀";
}

.bd-side-cta a{
    display:inline-flex;
    margin-top:12px;
    padding:10px 14px;
    border-radius:999px;
    background:var(--bpcs-accent);
    color:#101828;
    font-weight:900;
    text-decoration:none;
}

/*=================================================
EDITOR NOTE
=================================================*/

.bd-editor-note{
    position:relative;
    background:#ffffff;
    border:1px solid var(--bpcs-border);
    border-radius:24px;
    padding:24px 26px 24px 88px;
    margin-bottom:24px;
    color:var(--bpcs-text);
    line-height:1.78;
    box-shadow:var(--bpcs-shadow);
}

.bd-editor-note::before{
    content:"📝";
    position:absolute;
    left:26px;
    top:24px;
    width:44px;
    height:44px;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid var(--bpcs-border-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:21px;
}

.bd-editor-note strong{
    color:var(--bpcs-dark);
}

/*=================================================
ICON CONTENT CARDS
No green / no orange borders / no colored stripes
=================================================*/

.bd-info-card,
.bd-yellow-card,
.bd-warning-card,
.bd-final-card,
.bd-pro-box,
.bd-con-box{
    position:relative;
    background:#ffffff;
    border:1px solid var(--bpcs-border);
    border-left:0;
    border-top:0;
    border-radius:24px;
    padding:30px;
    margin:34px 0;
    color:var(--bpcs-text);
    box-shadow:var(--bpcs-shadow);
    transition:transform .18s ease, box-shadow .18s ease;
}

.bd-info-card:hover,
.bd-yellow-card:hover,
.bd-warning-card:hover,
.bd-final-card:hover,
.bd-pro-box:hover,
.bd-con-box:hover{
    transform:translateY(-2px);
    box-shadow:var(--bpcs-shadow-hover);
}

.bd-info-card::before,
.bd-yellow-card::before,
.bd-warning-card::before,
.bd-final-card::before,
.bd-pro-box::before,
.bd-con-box::before{
    display:inline-flex;
    width:48px;
    height:48px;
    align-items:center;
    justify-content:center;
    border-radius:17px;
    background:#f8fafc;
    border:1px solid var(--bpcs-border-soft);
    font-size:22px;
    margin-bottom:15px;
}

.bd-info-card::before{content:"ℹ️";}
.bd-yellow-card::before{content:"💡";}
.bd-warning-card::before{content:"⚠️";}
.bd-final-card::before{content:"✈️";}
.bd-pro-box::before{content:"✨";}
.bd-con-box::before{content:"📌";}

.bd-info-card h2,
.bd-info-card h3,
.bd-yellow-card h2,
.bd-yellow-card h3,
.bd-warning-card h2,
.bd-warning-card h3,
.bd-final-card h2,
.bd-final-card h3,
.bd-pro-box h3,
.bd-con-box h3{
    color:var(--bpcs-dark) !important;
    margin-top:0 !important;
}

.bd-info-card p:last-child,
.bd-yellow-card p:last-child,
.bd-warning-card p:last-child,
.bd-final-card p:last-child,
.bd-pro-box p:last-child,
.bd-con-box p:last-child{
    margin-bottom:0;
}

.bd-final-card h2::before{
    display:none !important;
}

/*=================================================
PROS / CONS GRID
=================================================*/

.bd-pros-cons{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
    margin:34px 0;
}

.bd-pros-cons .bd-pro-box,
.bd-pros-cons .bd-con-box{
    margin:0;
}

/*=================================================
STAT CARDS
=================================================*/

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

.bd-stat-card{
    background:#ffffff;
    border:1px solid var(--bpcs-border);
    border-radius:24px;
    padding:28px;
    box-shadow:var(--bpcs-shadow);
    transition:transform .18s ease, box-shadow .18s ease;
}

.bd-stat-card:hover{
    transform:translateY(-2px);
    box-shadow:var(--bpcs-shadow-hover);
}

.bd-stat-icon,
.bd-link-icon,
.bd-author-icon{
    background:#f8fafc;
    border:1px solid var(--bpcs-border-soft);
    display:flex;
    align-items:center;
    justify-content:center;
}

.bd-stat-icon{
    width:48px;
    height:48px;
    border-radius:17px;
    font-size:22px;
    margin-bottom:15px;
}

.bd-stat-card strong{
    display:block;
    color:var(--bpcs-dark);
    font-size:30px;
    line-height:1.1;
    margin-bottom:8px;
}

.bd-stat-card span{
    display:block;
    color:var(--bpcs-text);
    font-size:15px;
    line-height:1.65;
}

/*=================================================
STEP CARDS
=================================================*/

.bd-step-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:18px;
    margin:36px 0;
}

.bd-step-card{
    background:#ffffff;
    border:1px solid var(--bpcs-border);
    border-radius:24px;
    padding:26px;
    box-shadow:var(--bpcs-shadow);
    transition:transform .18s ease, box-shadow .18s ease;
}

.bd-step-card:hover{
    transform:translateY(-2px);
    box-shadow:var(--bpcs-shadow-hover);
}

.bd-step-number{
    width:44px;
    height:44px;
    border-radius:16px;
    background:#f8fafc;
    border:1px solid var(--bpcs-border-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0f172a;
    font-weight:950;
    margin-bottom:15px;
}

.bd-step-card h3{
    margin:0 0 8px;
    color:var(--bpcs-dark);
    font-size:18px;
}

.bd-step-card p{
    margin:0;
    color:var(--bpcs-text);
    font-size:15px;
    line-height:1.75;
}

/*=================================================
RELATED LINK CARDS
=================================================*/

.bd-link-cards{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin:36px 0;
}

.bd-link-card{
    display:block;
    background:#ffffff;
    border:1px solid var(--bpcs-border);
    border-radius:24px;
    padding:26px;
    text-decoration:none !important;
    box-shadow:var(--bpcs-shadow);
    transition:transform .18s ease, box-shadow .18s ease;
}

.bd-link-card:hover{
    transform:translateY(-2px);
    box-shadow:var(--bpcs-shadow-hover);
}

.bd-link-icon{
    width:48px;
    height:48px;
    border-radius:17px;
    font-size:22px;
    margin-bottom:15px;
}

.bd-link-card strong{
    display:block;
    color:var(--bpcs-dark);
    font-size:18px;
    margin-bottom:8px;
}

.bd-link-card span{
    display:block;
    color:var(--bpcs-muted);
    font-size:14px;
    line-height:1.65;
}

/*=================================================
AUTHOR BOX
=================================================*/

.bd-author-box{
    display:grid;
    grid-template-columns:68px 1fr;
    gap:20px;
    align-items:start;
    background:#ffffff;
    border:1px solid var(--bpcs-border);
    border-radius:28px;
    padding:28px;
    margin:38px 0;
    box-shadow:var(--bpcs-shadow);
}

.bd-author-icon{
    width:68px;
    height:68px;
    border-radius:23px;
    font-size:28px;
}

.bd-author-box h3{
    margin:0 0 8px;
    color:var(--bpcs-dark);
}

.bd-author-box p{
    margin:0;
    color:var(--bpcs-text);
    line-height:1.78;
}

/*=================================================
TIMELINE
=================================================*/

.bd-timeline{
    position:relative;
    display:grid;
    gap:18px;
    margin:36px 0;
}

.bd-timeline::before{
    content:"";
    position:absolute;
    left:20px;
    top:10px;
    bottom:10px;
    width:2px;
    background:#e5e7eb;
}

.bd-timeline-item{
    position:relative;
    padding-left:58px;
}

.bd-timeline-item::before{
    content:"";
    position:absolute;
    left:8px;
    top:9px;
    width:24px;
    height:24px;
    border-radius:50%;
    background:#ffffff;
    border:7px solid var(--bpcs-accent);
    box-shadow:none;
}

.bd-timeline-item strong{
    display:block;
    color:var(--bpcs-dark);
    margin-bottom:4px;
}

.bd-timeline-item p{
    margin-bottom:0;
}

/*=================================================
TABLES
=================================================*/

.bd-table-wrap{
    width:100%;
    overflow-x:auto;
    margin:36px 0;
    border-radius:24px;
    border:1px solid var(--bpcs-border);
    box-shadow:var(--bpcs-shadow);
    background:#ffffff;
}

.bd-blog-content table,
.bd-compare-table{
    width:100%;
    border-collapse:collapse;
    background:#ffffff;
    min-width:760px;
}

.bd-blog-content th,
.bd-compare-table th{
    background:#0f172a;
    color:#ffffff;
    padding:20px 22px;
    text-align:left;
    font-size:16px;
    font-weight:900;
}

.bd-blog-content td,
.bd-compare-table td{
    padding:20px 22px;
    border-bottom:1px solid var(--bpcs-border);
    color:var(--bpcs-text);
    font-size:16px;
    line-height:1.75;
    vertical-align:top;
}

.bd-blog-content tr:last-child td,
.bd-compare-table tr:last-child td{
    border-bottom:0;
}

/*=================================================
FAQ
=================================================*/

.bd-faq-premium{
    display:grid;
    gap:14px;
    margin:36px 0;
}

.bd-faq-premium details{
    background:#ffffff;
    border:1px solid var(--bpcs-border);
    border-radius:22px;
    padding:0;
    box-shadow:0 8px 24px rgba(15,23,42,.05);
    overflow:hidden;
}

.bd-faq-premium summary{
    cursor:pointer;
    padding:20px 24px;
    color:var(--bpcs-dark);
    font-weight:950;
    list-style:none;
}

.bd-faq-premium summary::-webkit-details-marker{
    display:none;
}

.bd-faq-premium summary::after{
    content:"+";
    float:right;
    color:var(--bpcs-primary);
    font-size:24px;
    line-height:1;
}

.bd-faq-premium details[open] summary::after{
    content:"–";
}

.bd-faq-premium details p{
    padding:0 24px 22px;
    margin:0;
}

/*=================================================
LEGACY COMPATIBILITY
=================================================*/

.blog-post,
.editor-content,
.content-box .editor-content{
    color:var(--bpcs-text);
}

.blog-post .bd-blog-content,
.editor-content .bd-blog-content{
    box-shadow:none;
}

/*=================================================
RESPONSIVE
=================================================*/

@media(max-width:1280px){
    .bd-blog-layout{
        grid-template-columns:minmax(0,1fr) 330px;
        gap:34px;
    }

    .bd-blog-content{
        padding:42px;
    }
}

@media(max-width:991px){
    .bd-blog-hero-grid,
    .bd-blog-layout{
        grid-template-columns:1fr;
    }

    .bd-blog-sidebar{
        position:relative;
        top:auto;
        order:-1;
    }

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

    .bd-stat-grid,
    .bd-link-cards{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:768px){
    .bd-blog-premium .container{
        width:100% !important;
        max-width:100% !important;
        padding-left:16px !important;
        padding-right:16px !important;
    }

    .bd-blog-hero{
        padding:48px 0 42px;
    }

    .bd-blog-hero h1{
        font-size:34px;
        letter-spacing:-.035em;
    }

    .bd-blog-hero p{
        font-size:16px;
        line-height:1.75;
    }

    .bd-blog-layout{
        padding:30px 0 50px;
        gap:22px;
    }

    .bd-blog-content{
        padding:24px 20px;
        border-radius:24px;
    }

    .bd-blog-content,
    .bd-blog-content p,
    .bd-blog-content li{
        font-size:16px;
        line-height:1.78;
    }

    .bd-blog-content h2{
        display:block;
        margin-top:42px;
        font-size:26px;
    }

    .bd-blog-content h2::before{
        margin-bottom:12px;
    }

    .bd-pros-cons,
    .bd-stat-grid,
    .bd-step-grid,
    .bd-link-cards{
        grid-template-columns:1fr;
    }

    .bd-info-card,
    .bd-yellow-card,
    .bd-warning-card,
    .bd-final-card,
    .bd-pro-box,
    .bd-con-box,
    .bd-stat-card,
    .bd-step-card,
    .bd-link-card{
        padding:22px;
        border-radius:22px;
    }

    .bd-author-box{
        grid-template-columns:1fr;
        padding:24px;
    }

    .bd-editor-note{
        padding:78px 22px 22px !important;
    }

    .bd-editor-note::before{
        left:22px;
        top:20px;
    }

    .bd-table-wrap{
        border-radius:20px;
    }
}

@media(max-width:420px){
    .bd-blog-content{
        padding:22px 18px;
    }

    .bd-side-card{
        padding:20px;
    }

    .bd-blog-hero h1{
        font-size:30px;
    }
}
/* =================================================
   BPCS v2.3 - AUTO GUIDE OVERVIEW
================================================= */

.bd-guide-overview {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 28px;
    margin: 0 0 24px;
    box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.bd-guide-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.bd-guide-overview h3 {
    margin: 0 0 12px;
    color: #101828;
    font-size: 22px;
}

.bd-guide-overview ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px 18px;
}

.bd-guide-overview li {
    position: relative;
    padding-left: 26px;
    color: #475467;
    font-size: 15px;
    line-height: 1.55;
}

.bd-guide-overview li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #f5b301;
    font-weight: 900;
}

@media(max-width:768px){
    .bd-guide-overview {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .bd-guide-overview ul {
        grid-template-columns: 1fr;
    }
}
/* =================================================
   BPCS v2.4 - END CTA
================================================= */

.bd-end-cta {
    text-align: center;
    background: #0f172a;
    color: #ffffff;
    border-radius: 32px;
    padding: 42px 34px;
    margin: 30px 0 0;
    box-shadow: 0 18px 45px rgba(15,23,42,.16);
}

.bd-end-cta-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.bd-end-cta h3 {
    color: #ffffff;
    margin: 0 0 10px;
    font-size: 28px;
}

.bd-end-cta p {
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.75;
}

.bd-end-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.bd-end-actions a {
    display: inline-flex;
    padding: 12px 18px;
    border-radius: 999px;
    background: #f5b301;
    color: #101828;
    font-weight: 900;
    text-decoration: none;
}

.bd-end-actions a:nth-child(2) {
    background: rgba(255,255,255,.08);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.18);
}

@media(max-width:768px){
    .bd-end-cta {
        padding: 32px 22px;
        border-radius: 26px;
    }

    .bd-end-cta h3 {
        font-size: 24px;
    }

    .bd-end-actions {
        flex-direction: column;
    }

    .bd-end-actions a {
        justify-content: center;
        width: 100%;
    }
}
