/* Blog Page Exclusive Styles */

.blog-hero-section {
    position: relative;
    padding: 150px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    text-align: center;
}

.blog-hero-section .content-box {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-section .subtitle {
    margin-bottom: 20px;
}

.blog-hero-section .hero-title,
.blog-details-hero .hero-title {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.blog-hero-section .hero-text {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.blog-hero-section .bread-crumb,
.blog-details-hero .bread-crumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-top: 30px;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-hero-section .bread-crumb li,
.blog-details-hero .bread-crumb li {
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
}

.blog-hero-section .bread-crumb li a,
.blog-details-hero .bread-crumb li a {
    color: var(--theme-color1);
    font-weight: 600;
}

.blog-hero-section .bread-crumb li.active,
.blog-details-hero .bread-crumb li.active {
    color: rgba(255, 255, 255, 0.5);
}

.blog-hero-section .bread-crumb li:not(:last-child)::after,
.blog-details-hero .bread-crumb li:not(:last-child)::after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Background Glows for Blog Hero */
.blog-hero-section .glow-effect-1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 170, 23, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

.blog-hero-section .glow-effect-2 {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 170, 23, 0.1) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

/* News Card Enhancements */
.news-card-style-4 {
    background: #141414;
    border: 1px solid #222;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-style-4:hover {
    transform: translateY(-10px);
    border-color: var(--theme-color1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.news-card-style-4 .thumb {
    position: relative;
    overflow: hidden;
}

.news-card-style-4 .thumb img {
    width: 100%;
    transition: transform 0.6s ease;
}

.news-card-style-4:hover .thumb img {
    transform: scale(1.1);
}

.news-card-style-4 .thumb .category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--theme-color1);
    color: #000;
    padding: 5px 15px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    z-index: 10;
}

.news-card-style-4 .content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-style-4 .content ul {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.news-card-style-4 .content ul li {
    font-size: 14px;
    color: var(--text-color);
}

.news-card-style-4 .content .title {
    margin-bottom: 15px;
    font-size: 24px;
    line-height: 1.3;
}

.news-card-style-4 .content .summary {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.news-card-style-4 .content .read-more-btn a {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.news-card-style-4 .content .read-more-btn a i {
    color: var(--theme-color1);
    transition: transform 0.3s ease;
}

.news-card-style-4 .content .read-more-btn a:hover {
    color: var(--theme-color1);
}

.news-card-style-4 .content .read-more-btn a:hover i {
    transform: translateX(5px);
}

/* Styled Pagination */
.styled-pagination {
    display: inline-flex;
    gap: 10px;
}

.styled-pagination li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #222;
    background: #141414;
    color: #fff;
    display: block;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.styled-pagination li a:hover,
.styled-pagination li a.active {
    background: var(--theme-color1);
    border-color: var(--theme-color1);
    color: #000;
}

/* Gold Italic utility */
/* Blog Details & Sidebar Styles */
.bg-dark-1 {
    background-color: #0c0c0c;
}

.rounded-20 {
    border-radius: 20px;
}

.rounded-15 {
    border-radius: 15px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

.blog-details-hero {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.blog-details-hero .post-meta {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
}

.blog-details-hero .post-meta .category {
    background: var(--theme-color1);
    color: #000;
    padding: 5px 20px;
    border-radius: 50px;
}

.blog-details-hero .post-meta .date {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-details-content .main-image img {
    width: 100%;
}

.blog-details-content .content-text h3 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #fff;
}

.blog-details-content .content-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-color);
}

.blog-details-content blockquote {
    background: #151515;
    border-left: 5px solid var(--theme-color1);
    padding: 40px;
    margin: 40px 0;
    font-size: 24px;
    font-style: italic;
    color: #fff;
    border-radius: 0 15px 15px 0;
}

.blog-details-content blockquote cite {
    display: block;
    font-size: 16px;
    font-style: normal;
    margin-top: 15px;
    color: var(--theme-color1);
    font-weight: 700;
}

.details-list {
    margin-bottom: 30px;
}

.details-list li {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.details-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--theme-color1);
}

.post-footer {
    padding: 30px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.post-footer .label {
    font-weight: 700;
    color: #fff;
    margin-right: 15px;
}

.post-footer .tags a {
    color: var(--text-color);
    background: #1a1a1a;
    padding: 5px 15px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 14px;
    transition: all 0.3s;
}

.post-footer .tags a:hover {
    background: var(--theme-color1);
    color: #000;
}

.post-footer .share a {
    color: var(--text-color);
    margin-left: 15px;
    font-size: 18px;
    transition: all 0.3s;
}

.post-footer .share a:hover {
    color: var(--theme-color1);
}

/* Author Box */
.author-box {
    background: #151515;
    padding: 40px;
    border-radius: 20px;
}

.author-box .inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.author-box .thumb img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.author-box .info h5 {
    font-size: 22px;
    margin-bottom: 10px;
}

.author-box .info p {
    margin-bottom: 0;
    font-size: 16px;
}

/* Comments */
.comments-area .title,
.comment-form-area .title {
    font-size: 30px;
    color: #fff;
    margin-bottom: 40px;
}

.comment-box .comment {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.comment-box .reply-comment {
    margin-left: 100px;
}

.comment-box .author-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
}

.comment-box .comment-inner {
    background: #151515;
    padding: 30px;
    border-radius: 15px;
    flex-grow: 1;
}

.comment-box .comment-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.comment-box .comment-info h6 {
    font-size: 18px;
}

.comment-box .comment-info .date {
    font-size: 14px;
    color: #777;
}

.comment-box .reply {
    color: var(--theme-color1);
    font-weight: 700;
    font-size: 14px;
}

/* Comment Form */
.comment-form input,
.comment-form textarea {
    width: 100%;
    background: #151515;
    border: 1px solid #222;
    padding: 15px 25px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--theme-color1);
}

.comment-form textarea {
    height: 150px;
}

/* Sidebar Widgets */
.sidebar {
    padding-left: 20px;
}

.sidebar-widget {
    background: #151515;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid #222;
}

.sidebar-widget .widget-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

.search-widget .form-group {
    position: relative;
}

.search-widget input {
    width: 100%;
    background: #0c0c0c;
    border: 1px solid #222;
    padding: 12px 50px 12px 20px;
    border-radius: 10px;
    color: #fff;
}

.search-widget button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-color1);
    background: none;
}

.category-list li {
    margin-bottom: 15px;
}

.category-list li a {
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    transition: all 0.3s;
}

.category-list li a:hover {
    color: var(--theme-color1);
}

.category-list li a span {
    color: #555;
}

.recent-post-box .post {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post-box .post .thumb img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.recent-post-box .post h6 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-box .post .date {
    font-size: 13px;
    color: #777;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list a {
    background: #0c0c0c;
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    border: 1px solid #222;
    transition: all 0.3s;
}

.tag-list a:hover {
    background: var(--theme-color1);
    color: #000;
    border-color: var(--theme-color1);
}

@media (max-width: 991px) {
    .sidebar {
        padding-left: 0;
        margin-top: 50px;
    }

    .comment-box .reply-comment {
        margin-left: 50px;
    }
}

@media (max-width: 767px) {

    .blog-hero-section .hero-title,
    .blog-details-hero .hero-title {
        font-size: 38px;
    }

    .author-box .inner {
        flex-direction: column;
        text-align: center;
    }

    .comment-box .comment {
        flex-direction: column;
    }

    .comment-box .reply-comment {
        margin-left: 30px;
    }
}