/* ============================================================
   BLOG PAGE - Modern Minimal Design
   ============================================================ */

/* --- Blog Hero --- */
.blog-hero {
    position: relative;
    padding: 160px 0 80px;
    text-align: center;
    background: #ffffff;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(5, 150, 105, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(5, 150, 105, 0.04) 0%, transparent 50%);
    z-index: 0;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 24px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
}

.blog-hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    background: #059669;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.blog-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    line-height: 1.5;
    margin-bottom: 16px;
}

.blog-hero h1 span {
    color: #059669;
}

.blog-hero p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
}


/* --- Filter Bar --- */
.blog-filter-section {
    position: relative;
    background: #ffffff;
    padding-bottom: 10px;
}

.blog-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 24px;
    background: #f9fafb;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
}

.filter-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.filter-tab:hover {
    color: #059669;
    background: rgba(5, 150, 105, 0.06);
}

.filter-tab.active {
    color: #ffffff;
    background: #059669;
    font-weight: 600;
}

.filter-search {
    position: relative;
    flex-shrink: 0;
}

.filter-search i {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #9ca3af;
    pointer-events: none;
}

.filter-search input {
    width: 220px;
    padding: 10px 40px 10px 16px;
    font-size: 13px;
    color: #374151;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    outline: none;
    transition: all 0.3s ease;
}

.filter-search input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
}

.filter-search input::placeholder {
    color: #d1d5db;
}


/* --- Featured Post --- */
.blog-featured-section {
    padding: 40px 0;
    background: #ffffff;
}

.blog-featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.blog-featured-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.featured-img {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 380px;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-featured-card:hover .featured-img img {
    transform: scale(1.05);
}

.featured-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.2) 100%);
    transition: opacity 0.3s ease;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    background: #059669;
    border-radius: 8px;
    letter-spacing: 0.02em;
}

.featured-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: self-start;
	position: relative;
}

.featured-cat {
    margin-bottom: 16px;
}

.cat-tag {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    border-radius: 8px;
}

.featured-body h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 14px;
	text-align: right;
}

.featured-body h2 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-body h2 a:hover {
    color: #059669;
}

.featured-body > p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 24px;
	text-align: justify;
	position: relative;
}

.featured-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f3f4f6;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.featured-meta span {
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-meta span i {
    font-size: 13px;
    color: #d1d5db;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    text-decoration: none;
    transition: all 0.25s ease;
	position: absolute;
	left: 0px;
}

.featured-link:hover {
    color: #047857;
    gap: 10px;
}


/* --- Blog Grid --- */
.blog-grid-section {
    padding: 20px 0 80px;
    background: #f9fafb;
}

.blog-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- Blog Card --- */
.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.blog-card-img {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}

.blog-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-img-overlay {
    opacity: 1;
}

.blog-card-cat {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(5, 150, 105, 0.9);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

.blog-card-body {
    padding: 22px 22px 24px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.blog-card-meta span {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta span i {
    font-size: 12px;
    color: #d1d5db;
}

.blog-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	text-align: right;
}

 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-body h3 a:hover {
    color: #059669;
}

.blog-card-body > p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.8;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	text-align: justify;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    text-decoration: none;
    transition: all 0.25s ease;
    padding-top: 14px;
    border-top: 1px solid #f3f4f6;
    width: 100%;
}

.blog-card-link:hover {
    color: #047857;
    gap: 10px;
}

/* --- Load More --- */
.blog-load-more {
    text-align: center;
    margin-top: 48px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    background: #ffffff;
    border: 1.5px solid #d1d5db;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.load-more-btn:hover {
    border-color: #059669;
    background: rgba(5, 150, 105, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.12);
}

.load-more-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(3px);
}

/* --- Filter Animation --- */
.blog-card.hide-card {
    display: none;
}

.blog-card.show-card {
    animation: cardFadeIn 0.4s ease-out;
}

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(15px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.blog-featured-card.hide-card {
    display: none;
}

.no-results-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    color: #9ca3af;
    font-size: 15px;
}

.no-results-msg i {
    display: block;
    font-size: 36px;
    color: #e5e7eb;
    margin-bottom: 16px;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-featured-card {
        grid-template-columns: 1fr 1fr;
    }

    .featured-img {
        min-height: 320px;
    }

    .featured-body {
        padding: 28px 24px;
    }

    .featured-body h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 130px 0 50px;
    }

    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-filter-bar {
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .filter-tabs {
        justify-content: center;
    }

    .filter-search {
        width: 100%;
    }

    .filter-search input {
        width: 100%;
    }

    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .featured-img {
        min-height: 220px;
    }

    .featured-body {
        padding: 24px 20px;
    }

    .featured-body h2 {
        font-size: 19px;
    }

    .featured-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .featured-link {
        align-self: flex-end;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-grid-section {
        padding: 20px 0 60px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 120px 0 40px;
    }

    .blog-hero h1 {
        font-size: 24px;
    }

    .blog-hero p {
        font-size: 14px;
    }

    .filter-tab {
        padding: 6px 12px;
        font-size: 12px;
    }

    .featured-body h2 {
        font-size: 17px;
    }

    .blog-card-body h3 {
        font-size: 15px;
    }
}


/* ============================================================
   BLOG DETAILS PAGE (blog-details.html)
   ============================================================ */

.sidebar-page-container{
	position: relative;
	padding: 120px 0px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content{
	padding: 0px;
	padding-top: 20px;
}

.sidebar-page-container .news-block-one .inner-box{
	box-shadow: none !important;
	margin-bottom: 18px;
}

.sidebar-page-container .news-block-one .inner-box .lower-content .post-info{
	opacity: 1;
}

.sidebar-page-container .news-block-one .inner-box .lower-content .link a{
	transform: scale(1);
	opacity: 1;
	color: #1b182f;
}

.sidebar-page-container .news-block-one .inner-box .image-box{
	border-radius: 10px;
}

.sidebar-page-container .news-block-one .inner-box .image-box img{
	border-radius: 10px;
}

.sidebar-page-container .btn-box .theme-btn{
	padding: 23px 70px;
}

.blog-sidebar{
	position: relative;
	display: block;
}

.blog-sidebar .search-widget{
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.blog-sidebar .search-widget .search-form .form-group{
	position: relative;
	margin: 0px;
	padding: 10px 20px;
	border-radius: 10px;
}

.blog-sidebar .search-widget .search-form .form-group input[type='search']{
	position: relative;
	width: 100%;
	height: 50px;
	font-size: 16px;
	color: #fff;
	border-radius: 5px;
	padding: 0px 70px 0px 30px;
	border: 1px solid transparent;
	transition: all 500ms ease;
}

.blog-sidebar .search-widget .search-form .form-group input:focus{
	border-color: #fff;
}

.blog-sidebar .search-widget .search-form .form-group button{
	position: absolute;
	top: 20px;
	right: 50px;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
}

.blog-sidebar .sidebar-widget{
	position: relative;
	display: block;
	background: #f1f0f7;
	padding: 42px 40px 45px 50px;
	margin-bottom: 30px;
	border-radius: 10px;
}

.blog-sidebar .sidebar-widget:last-child{
	margin-bottom: 0px;
}

.blog-sidebar .widget-title{
	position: relative;
	display: block;
	margin-bottom: 16px;
}

.blog-sidebar .widget-title h4{
	font-size: 20px;
	line-height: 30px;
}

.blog-sidebar .post-widget .post{
	position: relative;
	display: block;
	padding-left: 90px;
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid #fff;
	min-height: 112px;
}

.blog-sidebar .post-widget .post:last-child{
	margin-bottom: 0px;
	border-bottom: none;
}

.blog-sidebar .post-widget .post .post-thumb{
	position: absolute;
	left: 0px;
	top: 6px;
	width: 70px;
	height: 72px;
	border-radius: 10px;
}

.blog-sidebar .post-widget .post .post-thumb img{
	width: 100%;
	border-radius: 10px;
}

.blog-sidebar .post-widget .post .post-date{
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	margin-bottom: 3px;
}

.blog-sidebar .post-widget .post h6{
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 30px;
	font-weight: 600;
}

.blog-sidebar .post-widget .post h6 a{
	display: inline-block;
	color: #1b182f;
}

.blog-sidebar .post-widget{
	padding-bottom: 20px;
}

.blog-sidebar .category-list li{
	position: relative;
	display: block;
	margin-bottom: 18px;
}

.blog-sidebar .category-list li:last-child{
	margin-bottom: 0px;
}

.blog-sidebar .category-list li a{
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: #73727c;
}

.blog-sidebar .tags-widget .tags-list li{
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.blog-sidebar .tags-widget .tags-list li a{
	position: relative;
	display: inline-block;
	font-size: 11px;
	line-height: 20px;
	color: #73727c;
	font-weight: 700;
	text-transform: uppercase;
	background: #fff;
	text-align: center;
	padding: 10px 24px;
	border-radius: 8px;
}

.blog-sidebar .tags-widget .tags-list li a:hover{
	color: #fff;
}

.blog-sidebar .tags-widget .widget-title{
	margin-bottom: 22px;
}

.blog-sidebar .tags-widget{
	padding-bottom: 35px;
}

.blog-details-content{
	position: relative;
	display: block;
}

.blog-details-content .news-block-one .inner-box p{
	margin-bottom: 34px;
}

.blog-details-content .news-block-one .inner-box p:last-child{
	margin-bottom: 0px;
}

.blog-details-content .news-block-one .inner-box .image-box img{
	transform: scale(1) !important;
}

.blog-details-content .news-block-one .inner-box .image-box:before{
	display: none;
}

.blog-details-content .post-share-option{
	position: relative;
	display: block;
	padding: 35px 0px;
	border-top: 1px solid #d8d8df;
}

.blog-details-content .post-share-option .tags-list li{
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 10px;
}

.blog-details-content .post-share-option .tags-list li:last-child{
	margin: 0px !important;
}

.blog-details-content .post-share-option .tags-list li h5{
	font-size: 18px;
	line-height: 38px;
	font-weight: 700;
}

.blog-details-content .post-share-option .tags-list li a{
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	padding: 7px 20px;
	border-radius: 8px;
}

.blog-details-content .post-share-option .tags-list li a:hover{
	background: #1b182f;
}

.blog-details-content .post-share-option .social-links li{
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 10px;
}

.blog-details-content .post-share-option .social-links li:last-child{
	margin: 0px !important;
}

.blog-details-content .post-share-option .social-links li a{
	position: relative;
	display: inline-block;
	width: 38px;
	height: 38px;
	line-height: 38px;
	font-size: 14px;
	text-align: center;
	border-radius: 50%;
	background: #f1f0f7;
	color: #73727c;
}

.blog-details-content .post-share-option .social-links li a:hover{
	color: #fff;
}

.blog-details-content .news-block-one .inner-box{
	margin-bottom: 53px;
}

.blog-details-content .author-box{
	position: relative;
	display: block;
	background: #f1f0f7;
	padding: 55px 40px 56px 270px;
	margin-bottom: 51px;
	border-radius: 10px;
}

.blog-details-content .author-box .image-box{
	position: absolute;
	left: 60px;
	top: 60px;
	width: 160px;
	height: 160px;
	border-radius: 8px;
}

.blog-details-content .author-box .image-box img{
	width: 100%;
	border-radius: 8px;
}

.blog-details-content .author-box h3{
	display: block;
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 37px;
}

.blog-details-content .author-box p{
	font-weight: 500;
}

.blog-details-content .group-title{
	position: relative;
	display: block;
	margin-bottom: 42px;
}

.blog-details-content .group-title h3{
	display: block;
	font-size: 30px;
	line-height: 40px;
	font-weight: 800;
}

.blog-details-content .comment-box .comment{
	position: relative;
	display: block;
	padding-left: 180px;
	padding-bottom: 52px;
	margin-bottom: 52px;
	border-bottom: 1px solid #d8d8df;
}

.blog-details-content .comment-box .comment:last-child{
	margin-bottom: 0px;
}

.blog-details-content .comment-box .comment .thumb-box{
	position: absolute;
	left: 0px;
	top: 8px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
}

.blog-details-content .comment-box .comment .thumb-box img{
	width: 100%;
	border-radius: 50%;
}

.blog-details-content .comment-box .comment h4{
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 21px;
}

.blog-details-content .comment-box .comment h4 span{
	font-size: 14px;
}

.blog-details-content .comment-box .comment p{
	font-weight: 400;
}

.blog-details-content .comment-box .comment .reply-btn{
	position: absolute;
	display: inline-block;
	top: 8px;
	right: 0px;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	padding: 2.5px 31px;
	z-index: 1;
	text-transform: uppercase;
	border-radius: 8px;
}

.blog-details-content .comment-box .comment .reply-btn:hover{
	background: #1b182f;
}

.blog-details-content .comment-box{
	position: relative;
	display: block;
	margin-bottom: 50px;
}

.blog-details-content .comments-form-area .form-group{
	padding: 0px 10px;
}

.blog-details-content .comments-form-area .form-inner{
	margin: 0px 5px;
}

.blog-details-content .comments-form-area .form-group input,
.blog-details-content .comments-form-area .form-group textarea{
	background: #f1f0f7 !important;
	border-radius: 10px;
	border-color: #f1f0f7 !important;
}

.blog-details-content .comments-form-area .theme-btn{
	padding: 23.5px 68px;
}
/* --- Body padding for fixed header --- */
.boxed_wrapper {
  padding-top: 0px !important;
}