/* BLOG HERO */
.pg-blog-hero {
    padding: 80px 0 40px;
    background: #f6f8fc;
    text-align: center;
}
.pg-blog-hero h1 {
    font-size: 42px;
    font-weight: 700;
}
.pg-blog-hero p {
    color: #666;
}

/* BLOG GRID */
.pg-blog-list {
    padding: 60px 0;
}
.pg-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

/* BLOG CARD */
.pg-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.pg-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.pg-blog-img-wrap {
    display: block;
    overflow: hidden;
}
.pg-blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.3s;
}
.pg-blog-card:hover .pg-blog-img {
    transform: scale(1.06);
}

/* BLOG BODY */
.pg-blog-body {
    padding: 18px;
}
.pg-blog-date {
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
    display: block;
}
.pg-blog-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pg-blog-title a {
    color: #222;
    text-decoration: none;
}
.pg-blog-title a:hover {
    color: #ff6f3d;
}

.pg-blog-excerpt {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}
.pg-read-more {
    font-weight: 600;
    color: #ff6f3d;
    text-decoration: none;
}
.pg-read-more:hover {
    text-decoration: underline;
}

/* DETAIL PAGE */
.pg-blog-detail {
    padding: 60px 0;
}
.pg-blog-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.pg-detail-banner {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}
.pg-detail-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}
.pg-detail-meta {
    display: flex;
    gap: 20px;
    color: #777;
    margin-bottom: 20px;
}

/* RIGHT SIDEBAR */
.pg-detail-sidebar {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
}
.pg-sidebar-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.pg-recent-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
}
.pg-recent-item:last-child {
    border-bottom: none;
}
.pg-recent-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s;
}
.pg-recent-item:hover img {
    transform: scale(1.08);
}
.pg-recent-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}
.pg-recent-text a {
    color: #333;
    text-decoration: none;
}
.pg-recent-text a:hover {
    color: #ff6f3d;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pg-blog-detail-grid {
        grid-template-columns: 1fr;
    }
}
