/* ==========================================
   RAILSCAPE BLOG V2
========================================== */

.rs-blog{
    font-family:'Inter',sans-serif;
    background:#f8fafc;
    color:#1e293b;
    min-height:100vh;
}

.rs-wrapper{
    width:min(1100px,92%);
    margin:auto;
}

/* =========================
   HEADER
========================= */

.rs-header{
    background:#111827;
    position:sticky;
    top:0;
    z-index:1000;
}

.rs-header .rs-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:75px;
}

.rs-logo{
    color:#fff;
    text-decoration:none;
    font-size:2rem;
    font-weight:700;
}

.rs-nav{
    display:flex;
    gap:35px;
}

.rs-nav a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.rs-nav a:hover{
    color:#60a5fa;
}

/* =========================
   MAIN
========================= */

.rs-main{
    padding:45px 0 70px;
}

.rs-back{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-bottom:35px;
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

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

.rs-intro{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:60px;
    align-items:start;
    margin-bottom:60px;
}

.rs-tag{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:7px 18px;
    border-radius:30px;
    font-size:.9rem;
    margin-bottom:18px;
}

.rs-left h1{
    font-size:3rem;
    margin:15px 0;
    color:#111827;
}

.rs-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    color:#64748b;
    margin-bottom:25px;
    font-weight:600;
}

.rs-left p{
    margin-bottom:18px;
    font-size:1.05rem;
    line-height:1.9;
}

.rs-right{
    display:flex;
    justify-content:flex-end;
}

.rs-right img{
    width:320px;
    height:320px;
    object-fit:cover;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* =========================
   INFO
========================= */

.rs-info{
    margin:60px 0;
}

.rs-info h2{
    margin-bottom:25px;
    color:#111827;
}

.rs-info-table{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.rs-item{
    background:#fff;
    padding:18px 22px;
    border-radius:12px;
    border:1px solid #e2e8f0;
}

.rs-item span{
    display:block;
    color:#64748b;
    font-size:.9rem;
    margin-bottom:8px;
}

.rs-item strong{
    color:#111827;
}

/* =========================
   ARTICLE
========================= */

.rs-article{
    max-width:760px;
}

.rs-article h2{
    font-size:2rem;
    margin:50px 0 20px;
    color:#111827;
    padding-bottom:8px;
    border-bottom:2px solid #dbeafe;
}

.rs-article p{
    margin-bottom:20px;
    line-height:1.9;
    color:#334155;
}

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

.rs-note{
    margin:35px 0;
    padding:22px;
    background:#eff6ff;
    border-left:4px solid #2563eb;
    border-radius:10px;
}

.rs-note h3{
    margin-bottom:10px;
    color:#1e3a8a;
}

/* =========================
   RATING
========================= */

.rs-rating{
    margin-top:60px;
    background:#fff;
    padding:30px;
    border-radius:15px;
    border:1px solid #e2e8f0;
    text-align:center;
}

.rs-stars{
    color:#f59e0b;
    font-size:2rem;
    margin:15px 0;
}

/* =========================
   BOTTOM
========================= */

.rs-bottom{
    margin:45px 0;
}

.rs-bottom a{
    text-decoration:none;
    color:#2563eb;
    font-weight:600;
}

/* =========================
   FOOTER
========================= */

.rs-footer{
    background:#111827;
    color:#fff;
    text-align:center;
    padding:25px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

.rs-intro{
    grid-template-columns:1fr;
}

.rs-right{
    justify-content:center;
}

.rs-info-table{
    grid-template-columns:1fr;
}

.rs-article{
    max-width:100%;
}

}

@media(max-width:600px){

.rs-left h1{
    font-size:2.2rem;
}

.rs-meta{
    flex-direction:column;
    gap:8px;
}

.rs-nav{
    gap:18px;
    font-size:.9rem;
}

.rs-right img{
    width:260px;
    height:260px;
}

}
.blog-highlights-section{

margin-top:50px;

}

.blog-highlights{

display:flex;

flex-wrap:wrap;

gap:12px;

margin-top:20px;

}

.blog-highlights span{

background:#1565c0;

color:#fff;

padding:8px 16px;

border-radius:30px;

font-size:.9rem;

font-weight:600;

}