/* ===== SECTION WRAPPER ===== */
.zx-blog-section-wrap {
    padding: 80px 20px;
    background: #ffffff;
}

.zx-blog-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== TITLE ===== */
.zx-blog-main-title {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    color: #000;
    position: relative;
}

.zx-blog-main-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #FFD000;
    display: block;
    margin: 15px auto 0;
}

/* ===== GRID ===== */
.zx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== CARD ===== */
.zx-blog-card {
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.zx-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.zx-blog-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.zx-blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.zx-blog-content h3 {
    color: #FFD000;
    font-size: 20px;
    margin-top: 0;
}

.zx-blog-content p {
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

.zx-blog-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background: #FFD000;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s ease;
}

.zx-blog-btn:hover {
    background: #fff;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 992px) {
    .zx-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .zx-blog-grid {
        grid-template-columns: 1fr;
    }
}

.rx-blog-layout-wrapper { padding:80px 20px; background:#fff; }

.rx-blog-layout-container {
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns: 2fr 1fr;
    gap:50px;
}

/* MAIN */
.rx-blog-title { font-size:36px; margin-bottom:10px; line-height: 40px; }
.rx-blog-meta { color:#888; margin-bottom:30px; }

.rx-feature-image,
.rx-inline-image {
    width:100%;
    border-radius:12px;
    margin:30px 0;
}

.rx-highlight {
    background:#FFD000;
    padding:3px 6px;
    border-radius:4px;
    font-weight:600;
}

.rx-quote-box {
    margin:40px 0;
    padding:25px;
    background:#000;
    color:#FFD000;
    border-left:6px solid #FFD000;
}

.rx-list li { margin-bottom:10px; }

.rx-bottom-cta {
    margin-top:50px;
    padding:40px;
    background:#000;
    color:#fff;
    text-align:center;
    border-radius:12px;
}

.rx-cta-btn {
    display:inline-block;
    margin-top:15px;
    padding:12px 25px;
    background:#FFD000;
    color:#000;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
}

/* SIDEBAR */
.rx-blog-sidebar {}

.rx-sidebar-inner {
    position:sticky;
    top:100px;
}

.rx-side-cta {
    background:#000;
    color:#fff;
    padding:25px;
    border-radius:12px;
    margin-bottom:30px;
}

.rx-side-btn {
    display:inline-block;
    margin-top:15px;
    padding:10px 20px;
    background:#FFD000;
    color:#000;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
}

.rx-ad-box {
    margin-bottom:30px;
    text-align:center;
}

.rx-ad-label {
    font-size:12px;
    color:#888;
    margin-bottom:10px;
}

.rx-ad-box img {
    width:100%;
    border-radius:10px;
}

.rx-similar-widget {
    margin-bottom:30px;
}

.rx-similar-widget h3 {
    margin-bottom:20px;
}

.rx-side-blog {
    margin-bottom:20px;
    border-bottom:1px solid #eee;
    padding-bottom:15px;
}

.rx-side-blog a {
    text-decoration:none;
    color:#000;
    font-weight:600;
}

.rx-side-blog a:hover {
    color:#FFD000;
}

/* RESPONSIVE */
@media(max-width:992px){
    .rx-blog-layout-container {
        grid-template-columns:1fr;
    }
    .rx-sidebar-inner {
        position:relative;
        top:auto;
    }
}

.rx-list-boxed {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.rx-list-boxed li {
    background: #f8f8f8;
    padding: 18px 20px;
    margin-bottom: 12px;
    border-left: 5px solid #FFD000;
    border-radius: 8px;
    transition: 0.3s ease;
}

.rx-list-boxed li:hover {
    background: #000;
    color: #FFD000;
}