/* =========================
   BASE RESET (SAFE)
========================= */


body {
    background: radial-gradient(circle at top, #1b34b3, #3a5afc 75%);
    color: #1b34b3;
}


/* =========================
   HERO / PAGE HEAD
========================= */
.page-head {
    width: 100%;
    padding: 20px 0 20px;
    background: linear-gradient(135deg, #0a6cff, #053a8f);
}

.page-head h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-head p {
    color: rgba(255,255,255,0.9);
    max-width: 720px;
    font-size: 16px;
}

/* =========================
   MAIN WRAPPER
========================= */
section {
    padding: 20px 0;
}

.container {
    max-width: 1180px;
    margin: auto;
    padding: 0 20px;
}

/* =========================
   GRID FIX (70 / 30)
========================= */
.row {
    display: flex;
    gap: 30px;
}

.col-lg-8 {
    width: 70%;
}

.col-lg-4 {
    width: 30%;
}

/* =========================
   BLOG CONTENT TILE
========================= */
.post-content {
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.post-content p {
    line-height: 1.7;
    margin-bottom: 16px;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    margin: 25px 0 12px;
    font-weight: 600;
}

/* =========================
   RIGHT SIDE IMAGE TILE
========================= */
.col-lg-4 img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    background: rgba(255,255,255,0.9);
    padding: 14px;
    border-radius: 14px;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.12),
        0 0 24px rgba(255,215,0,0.15);
}


/* =========================
   RESPONSIVE (MOBILE)
========================= */
@media (max-width: 991px) {
    .row {
        flex-direction: column;
    }

    .col-lg-8,
    .col-lg-4 {
        width: 100%;
    }

    .page-head h1 {
        font-size: 32px;
    }
}
