/* ================================
   INNER HERO SECTION
================================ */
.inner-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(20, 20, 20, 0.75), rgba(255, 199, 44, 0.45)),
        url("../images/blog-hero.jpg") center/cover no-repeat;
    overflow: hidden;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 199, 44, 0.35), transparent 35%),
        rgba(0, 0, 0, 0.45);
    z-index: 1;
}

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

.inner-hero-content {
    max-width: 850px;
    text-align: center;
    margin: 0 auto;
    color: #fff;
}

.inner-hero-content h1 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: var(--primary-yellow);
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-yellow);
}


/* ================================
   BLOG LISTING PAGE
================================ */
.gv-blog-section {
    padding: 90px 0;
    background:
        linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.gv-blog-card {
    height: 100%;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.gv-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.13);
}

.gv-blog-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.gv-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gv-blog-card:hover .gv-blog-image img {
    transform: scale(1.08);
}

.gv-blog-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.45));
    opacity: 0;
    transition: var(--transition);
}

.gv-blog-card:hover .gv-blog-image::after {
    opacity: 1;
}

.gv-blog-content {
    padding: 28px;
}

.gv-blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.gv-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 600;
}

.gv-blog-meta i {
    color: var(--primary-yellow);
}

.gv-blog-title {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
    margin-bottom: 14px;
}

.gv-blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.gv-blog-title a:hover {
    color: var(--primary-yellow);
}

.gv-blog-excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.gv-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.gv-read-more i {
    transition: var(--transition);
    color: var(--primary-yellow);
}

.gv-read-more:hover {
    color: var(--primary-yellow);
}

.gv-read-more:hover i {
    transform: translateX(6px);
}


/* ================================
   PAGINATION
================================ */
.pagination {
    gap: 8px;
}

.pagination .page-link,
.pagination li a {
    width: 44px;
    height: 44px;
    border-radius: 50% !important;
    border: none;
    background: #fff;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    font-weight: 700;
    transition: var(--transition);
}

.pagination .page-link:hover,
.pagination li a:hover,
.pagination .active .page-link {
    background: var(--primary-yellow);
    color: #111;
}


/* ================================
   SINGLE BLOG PAGE
================================ */
.single-blog-section {
    padding: 90px 0;
    background: #fff;
}

.single-blog-left {
    background: #fff;
}

.single-blog-image {
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.single-blog-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.single-blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 18px 22px;
    background: #fff8df;
    border-left: 5px solid var(--primary-yellow);
    border-radius: 16px;
    margin-bottom: 30px;
}

.single-blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 14px;
    font-weight: 600;
}

.single-blog-meta i {
    color: var(--primary-yellow);
}

.single-blog-content {
    color: #333;
    font-size: 16px;
    line-height: 1.9;
}

.single-blog-content h1,
.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4 {
    color: var(--text-dark);
    font-weight: 800;
    margin: 32px 0 14px;
    line-height: 1.3;
}

.single-blog-content h2 {
    font-size: 32px;
}

.single-blog-content h3 {
    font-size: 25px;
}

.single-blog-content p {
    margin-bottom: 18px;
}

.single-blog-content ul,
.single-blog-content ol {
    padding-left: 22px;
    margin-bottom: 24px;
}

.single-blog-content li {
    margin-bottom: 10px;
}

.single-blog-content img {
    max-width: 100%;
    border-radius: 18px;
    margin: 24px 0;
}

.single-blog-content a {
    color: #111;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--primary-yellow);
    text-underline-offset: 4px;
}

.single-blog-content blockquote {
    padding: 24px 28px;
    background: #fff8df;
    border-left: 5px solid var(--primary-yellow);
    border-radius: 16px;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}


/* ================================
   TAGS
================================ */
.blog-tags-share {
    padding-top: 28px;
    border-top: 1px solid #eeeeee;
}

.blog-tags {
    color: #444;
    font-weight: 700;
}

.blog-tags span {
    color: #111;
    margin-right: 8px;
}

.blog-tags a {
    display: inline-block;
    color: #111;
    background: #fff4cc;
    border: 1px solid rgba(255, 199, 44, 0.45);
    padding: 8px 14px;
    border-radius: 30px;
    margin: 6px 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.blog-tags a:hover {
    background: var(--primary-yellow);
}


/* ================================
   BLOG SIDEBAR
================================ */
.blog-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-box {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-box h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 12px;
}

.sidebar-box h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 4px;
    background: var(--primary-yellow);
    border-radius: 10px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    border-bottom: 1px solid #eeeeee;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    text-decoration: none;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.sidebar-list a::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-yellow);
    transition: var(--transition);
}

.sidebar-list a:hover {
    color: var(--primary-yellow);
    padding-left: 8px;
}

.sidebar-list a:hover::after {
    transform: translateX(4px);
}

.cta-box {
    background:
        linear-gradient(135deg, rgba(30, 30, 30, 0.96), rgba(0, 0, 0, 0.88)),
        radial-gradient(circle at top right, rgba(255, 199, 44, 0.35), transparent 40%);
    color: #fff;
    overflow: hidden;
}

.cta-box h4 {
    color: #fff;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 22px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    background: var(--primary-yellow);
    color: #111;
    padding: 14px 18px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-btn:hover {
    background: #fff;
    color: #111;
    transform: translateY(-3px);
}


/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 1199px) {
    .gv-blog-image {
        height: 225px;
    }

    .single-blog-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 991px) {
    .inner-hero {
        min-height: 310px;
    }

    .gv-blog-section,
    .single-blog-section {
        padding: 70px 0;
    }

    .blog-sidebar {
        position: static;
        top: auto;
    }

    .single-blog-image img {
        max-height: 430px;
    }
}

@media (max-width: 767px) {
    .inner-hero {
        min-height: 280px;
        text-align: center;
    }

    .inner-hero-content h1 {
        font-size: 34px;
    }

    .breadcrumb li {
        font-size: 14px;
    }

    .gv-blog-section,
    .single-blog-section {
        padding: 55px 0;
    }

    .gv-blog-content {
        padding: 24px;
    }

    .gv-blog-title {
        font-size: 20px;
    }

    .gv-blog-image {
        height: 220px;
    }

    .single-blog-meta {
        gap: 12px;
        padding: 16px;
    }

    .single-blog-meta span {
        width: 100%;
    }

    .single-blog-content {
        font-size: 15px;
        line-height: 1.8;
    }

    .single-blog-content h2 {
        font-size: 25px;
    }

    .single-blog-content h3 {
        font-size: 22px;
    }

    .sidebar-box {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .inner-hero {
        min-height: 250px;
    }

    .inner-hero-content h1 {
        font-size: 30px;
    }

    .gv-blog-image {
        height: 200px;
    }

    .gv-blog-meta {
        gap: 10px;
    }

    .gv-blog-meta span {
        font-size: 12px;
    }

    .gv-blog-content {
        padding: 22px;
    }

    .single-blog-image {
        border-radius: 18px;
    }

    .single-blog-image img {
        max-height: 300px;
    }

    .blog-tags a {
        font-size: 12px;
        padding: 7px 12px;
    }

    .sidebar-box h4 {
        font-size: 20px;
    }
}