/* Blog Index Styles */
.blog-sec {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.heading_type1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.heading_type1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: #ff3e6c;
    /* Matching theme color */
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #fbcb7f;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.2s;
}

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

/* Blog Details Styles */
.blog-details-sec {
    padding: 60px 0;
    background-color: #fff;
}

.blog-details-header {
    margin-bottom: 30px;
}

.blog-details-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.blog-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-details-img {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-details-img img {
    width: 100%;
    height: auto;
}

.blog-full-content {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.blog-full-content p {
    margin-bottom: 20px;
}

/* Search Box */
.search-box {
    margin-bottom: 40px;
    max-width: 500px;
}

.search-box .form-control {
    /* border-radius: 30px; */
    border-radius: 7px 0 0 7px !important;
    padding: 12px 20px;
    border: 1px solid #ddd;
    box-shadow: none;
}

.search-box .btn {
    border-radius: 30px;
    padding: 10px 25px;
    background-color: #fbcb7f;
    border-color: #fbcb7f;
    color: #000000;
    margin-left: -50px;
    z-index: 5;
}

/* Sidebar & Widgets */
.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff3e6c;
}

.recent-post-thumb img {
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.05);
}

.recent-post-info h6 {
    line-height: 1.4;
    transition: color 0.2s;
}

.recent-post-item:hover .recent-post-info h6 a {
    color: #ff3e6c !important;
}

/* Share Box */
.blog-share-box h5 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.share-icons a {
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.2s;
}

.share-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Breadcrumb Styling */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #888;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #ff3e6c;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .heading_type1 {
        font-size: 26px;
    }

    .blog-details-header h1 {
        font-size: 28px;
    }

    .blog-img {
        height: 180px;
    }
}

.blog-sec .heading_type1 {
    text-align: left;
    padding: 0 0 10px;
}

a:hover {
    color: #f6157b;
}