/* Blog Header Section */
.blog-header-section {
    background: var(--background-color);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(29, 96, 236, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.blog-header-section .container {
    position: relative;
    z-index: 2;
}

.blog-header-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.blog-header-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    position: relative;
    display: inline-block;
}

.blog-header-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.blog-header-description {
    font-size: 18px;
    color: var(--default-color);
    line-height: 1.6;
    margin: 30px 0 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Content Section */
.blog-content-section {
    background: var(--background-color);
    padding: 80px 0 120px;
}

/* Blog Posts - Updated for Vertical Layout with Width Constraints */
.blog-posts {
    margin-bottom: 50px;
    max-width: 600px; /* Limit the width of the blog posts container */
}

.blog-post-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

/* Override Bootstrap grid to make vertical layout */
.blog-post-card .row {
    display: block;
}

.blog-post-card .col-md-5,
.blog-post-card .col-md-7 {
    width: 100%;
    max-width: 100%;
    flex: none;
}

.blog-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    width: 100%;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-content {
    padding: 30px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.blog-post-meta i {
    color: var(--accent-color);
    margin-right: 5px;
}

.blog-post-title {
    margin-bottom: 15px;
}

.blog-post-title a {
    color: var(--heading-color);
    font-size: 24px;
    font-weight: 700;
    font-family: var(--heading-font);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--accent-color);
}

.blog-post-excerpt {
    font-size: 15px;
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.blog-post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--contrast-color);
}

.blog-read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

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

.blog-post-tags {
    display: flex;
    gap: 10px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--default-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

/* Pagination */
.blog-pagination {
    margin-top: 50px;
}

.blog-pagination .pagination {
    justify-content: center;
    margin: 0;
}

.blog-pagination .page-link {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--default-color);
    padding: 10px 15px;
    margin: 0 3px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.blog-pagination .page-item.active .page-link {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

/* No Posts Message */
.no-posts-message {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-posts-icon {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.7;
}

.no-posts-message h3 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.no-posts-message p {
    color: var(--default-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Sidebar */
.blog-sidebar {
    padding-left: 30px;
}

.sidebar-widget {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.sidebar-widget:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--heading-font);
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content h6 a {
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-content h6 a:hover {
    color: var(--accent-color);
}

.recent-post-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.recent-post-meta i {
    color: var(--accent-color);
    margin-right: 3px;
}

/* Categories Widget */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--default-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateX(5px);
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--contrast-color);
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.category-item:hover .category-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--accent-color), #2d5cff);
    color: var(--contrast-color);
}

.newsletter-widget .widget-title {
    color: var(--contrast-color);
}

.newsletter-widget .widget-title::after {
    background: rgba(255, 255, 255, 0.3);
}

.widget-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: var(--contrast-color);
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: transparent;
    border: none;
    color: var(--contrast-color);
    box-shadow: none;
}

.newsletter-form .btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--contrast-color);
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-sidebar {
        padding-left: 20px;
    }
}

@media (max-width: 991px) {
    .blog-header-title {
        font-size: 42px;
    }

    .blog-sidebar {
        padding-left: 0;
        margin-top: 50px;
    }

    .sidebar-widget {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .blog-header-section {
        padding: 100px 0 40px;
    }

    .blog-header-title {
        font-size: 36px;
    }

    .blog-header-description {
        font-size: 16px;
    }

    .blog-content-section {
        padding: 60px 0 80px;
    }

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

    .blog-post-content {
        padding: 25px;
    }

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

    .blog-post-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .blog-header-title {
        font-size: 32px;
    }

    .blog-post-content {
        padding: 20px;
    }

    .sidebar-widget {
        padding: 20px;
    }

    .recent-post-item {
        gap: 10px;
    }

    .recent-post-image {
        width: 60px;
        height: 60px;
    }
}



/*!* Blog Header Section *!*/
/*.blog-header-section {*/
/*    background: var(--background-color);*/
/*    padding: 120px 0 60px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.blog-header-section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: linear-gradient(135deg, rgba(29, 96, 236, 0.1) 0%, transparent 50%);*/
/*    z-index: 1;*/
/*}*/

/*.blog-header-section .container {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*.blog-header-subtitle {*/
/*    display: inline-block;*/
/*    font-size: 14px;*/
/*    font-weight: 700;*/
/*    letter-spacing: 2px;*/
/*    color: var(--accent-color);*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 15px;*/
/*}*/

/*.blog-header-title {*/
/*    font-size: 48px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 20px;*/
/*    color: var(--heading-color);*/
/*    font-family: var(--heading-font);*/
/*    position: relative;*/
/*    display: inline-block;*/
/*}*/

/*.blog-header-title::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    bottom: -10px;*/
/*    width: 60px;*/
/*    height: 4px;*/
/*    background: var(--accent-color);*/
/*    border-radius: 2px;*/
/*}*/

/*.blog-header-description {*/
/*    font-size: 18px;*/
/*    color: var(--default-color);*/
/*    line-height: 1.6;*/
/*    margin: 30px 0 0;*/
/*    max-width: 600px;*/
/*    margin-left: auto;*/
/*    margin-right: auto;*/
/*}*/

/*!* Blog Content Section *!*/
/*.blog-content-section {*/
/*    background: var(--background-color);*/
/*    padding: 80px 0 120px;*/
/*}*/

/*!* Blog Posts - Updated for Vertical Layout *!*/
/*.blog-posts {*/
/*    margin-bottom: 50px;*/
/*}*/

/*.blog-post-card {*/
/*    background: var(--surface-color);*/
/*    border-radius: 15px;*/
/*    overflow: hidden;*/
/*    margin-bottom: 40px;*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    transition: all 0.4s ease;*/
/*}*/

/*.blog-post-card:hover {*/
/*    transform: translateY(-5px);*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);*/
/*    border-color: var(--accent-color);*/
/*}*/

/*!* Override Bootstrap grid to make vertical layout *!*/
/*.blog-post-card .row {*/
/*    display: block;*/
/*}*/

/*.blog-post-card .col-md-5,*/
/*.blog-post-card .col-md-7 {*/
/*    width: 100%;*/
/*    max-width: 100%;*/
/*    flex: none;*/
/*}*/

/*.blog-post-image {*/
/*    position: relative;*/
/*    height: 250px;*/
/*    overflow: hidden;*/
/*    width: 100%;*/
/*}*/

/*.blog-post-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    transition: transform 0.4s ease;*/
/*}*/

/*.blog-post-card:hover .blog-post-image img {*/
/*    transform: scale(1.05);*/
/*}*/

/*.blog-post-category {*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    left: 15px;*/
/*    background: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*    padding: 5px 12px;*/
/*    border-radius: 20px;*/
/*    font-size: 12px;*/
/*    font-weight: 600;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
/*}*/

/*.blog-post-content {*/
/*    padding: 30px;*/
/*}*/

/*.blog-post-meta {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 20px;*/
/*    margin-bottom: 15px;*/
/*    font-size: 13px;*/
/*    color: rgba(255, 255, 255, 0.6);*/
/*}*/

/*.blog-post-meta i {*/
/*    color: var(--accent-color);*/
/*    margin-right: 5px;*/
/*}*/

/*.blog-post-title {*/
/*    margin-bottom: 15px;*/
/*}*/

/*.blog-post-title a {*/
/*    color: var(--heading-color);*/
/*    font-size: 24px;*/
/*    font-weight: 700;*/
/*    font-family: var(--heading-font);*/
/*    text-decoration: none;*/
/*    line-height: 1.3;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.blog-post-title a:hover {*/
/*    color: var(--accent-color);*/
/*}*/

/*.blog-post-excerpt {*/
/*    font-size: 15px;*/
/*    color: var(--default-color);*/
/*    line-height: 1.6;*/
/*    margin-bottom: 25px;*/
/*}*/

/*.blog-post-footer {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    flex-wrap: wrap;*/
/*    gap: 15px;*/
/*}*/

/*.blog-read-more {*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    color: var(--accent-color);*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*    font-size: 14px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.blog-read-more:hover {*/
/*    color: var(--contrast-color);*/
/*}*/

/*.blog-read-more i {*/
/*    margin-left: 8px;*/
/*    transition: transform 0.3s ease;*/
/*}*/

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

/*.blog-post-tags {*/
/*    display: flex;*/
/*    gap: 10px;*/
/*}*/

/*.tag {*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    color: var(--default-color);*/
/*    padding: 4px 10px;*/
/*    border-radius: 15px;*/
/*    font-size: 12px;*/
/*    font-weight: 500;*/
/*}*/

/*!* Pagination *!*/
/*.blog-pagination {*/
/*    margin-top: 50px;*/
/*}*/

/*.blog-pagination .pagination {*/
/*    justify-content: center;*/
/*    margin: 0;*/
/*}*/

/*.blog-pagination .page-link {*/
/*    background: var(--surface-color);*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    color: var(--default-color);*/
/*    padding: 10px 15px;*/
/*    margin: 0 3px;*/
/*    border-radius: 8px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.blog-pagination .page-link:hover {*/
/*    background: var(--accent-color);*/
/*    border-color: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*}*/

/*.blog-pagination .page-item.active .page-link {*/
/*    background: var(--accent-color);*/
/*    border-color: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*}*/

/*!* No Posts Message *!*/
/*.no-posts-message {*/
/*    background: var(--surface-color);*/
/*    border-radius: 15px;*/
/*    padding: 60px 40px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

/*.no-posts-icon {*/
/*    font-size: 4rem;*/
/*    color: var(--accent-color);*/
/*    opacity: 0.7;*/
/*}*/

/*.no-posts-message h3 {*/
/*    color: var(--heading-color);*/
/*    margin-bottom: 15px;*/
/*    font-family: var(--heading-font);*/
/*}*/

/*.no-posts-message p {*/
/*    color: var(--default-color);*/
/*    font-size: 16px;*/
/*    line-height: 1.6;*/
/*}*/

/*!* Sidebar *!*/
/*.blog-sidebar {*/
/*    padding-left: 30px;*/
/*}*/

/*.sidebar-widget {*/
/*    background: var(--surface-color);*/
/*    border-radius: 15px;*/
/*    padding: 30px;*/
/*    margin-bottom: 30px;*/
/*    border: 1px solid rgba(255, 255, 255, 0.1);*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.sidebar-widget:hover {*/
/*    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
/*}*/

/*.widget-title {*/
/*    color: var(--heading-color);*/
/*    font-size: 20px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 20px;*/
/*    font-family: var(--heading-font);*/
/*    position: relative;*/
/*    padding-bottom: 10px;*/
/*}*/

/*.widget-title::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 40px;*/
/*    height: 3px;*/
/*    background: var(--accent-color);*/
/*    border-radius: 2px;*/
/*}*/

/*!* Recent Posts Widget *!*/
/*.recent-posts-list {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 20px;*/
/*}*/

/*.recent-post-item {*/
/*    display: flex;*/
/*    gap: 15px;*/
/*    padding-bottom: 20px;*/
/*    border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
/*}*/

/*.recent-post-item:last-child {*/
/*    border-bottom: none;*/
/*    padding-bottom: 0;*/
/*}*/

/*.recent-post-image {*/
/*    flex-shrink: 0;*/
/*    width: 70px;*/
/*    height: 70px;*/
/*    border-radius: 8px;*/
/*    overflow: hidden;*/
/*}*/

/*.recent-post-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

/*.recent-post-content h6 {*/
/*    margin-bottom: 8px;*/
/*    line-height: 1.4;*/
/*}*/

/*.recent-post-content h6 a {*/
/*    color: var(--heading-color);*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    text-decoration: none;*/
/*    transition: color 0.3s ease;*/
/*}*/

/*.recent-post-content h6 a:hover {*/
/*    color: var(--accent-color);*/
/*}*/

/*.recent-post-meta {*/
/*    display: flex;*/
/*    gap: 10px;*/
/*    font-size: 11px;*/
/*    color: rgba(255, 255, 255, 0.6);*/
/*}*/

/*.recent-post-meta i {*/
/*    color: var(--accent-color);*/
/*    margin-right: 3px;*/
/*}*/

/*!* Categories Widget *!*/
/*.categories-list {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 10px;*/
/*}*/

/*.category-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    padding: 12px 15px;*/
/*    background: rgba(255, 255, 255, 0.05);*/
/*    border-radius: 8px;*/
/*    color: var(--default-color);*/
/*    text-decoration: none;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.category-item:hover {*/
/*    background: var(--accent-color);*/
/*    color: var(--contrast-color);*/
/*    transform: translateX(5px);*/
/*}*/

/*.category-count {*/
/*    background: rgba(255, 255, 255, 0.2);*/
/*    color: var(--contrast-color);*/
/*    padding: 3px 8px;*/
/*    border-radius: 12px;*/
/*    font-size: 11px;*/
/*    font-weight: 600;*/
/*}*/

/*.category-item:hover .category-count {*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*}*/

/*!* Newsletter Widget *!*/
/*.newsletter-widget {*/
/*    background: linear-gradient(135deg, var(--accent-color), #2d5cff);*/
/*    color: var(--contrast-color);*/
/*}*/

/*.newsletter-widget .widget-title {*/
/*    color: var(--contrast-color);*/
/*}*/

/*.newsletter-widget .widget-title::after {*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*}*/

/*.widget-description {*/
/*    color: rgba(255, 255, 255, 0.9);*/
/*    font-size: 14px;*/
/*    line-height: 1.5;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.newsletter-form .input-group {*/
/*    background: rgba(255, 255, 255, 0.1);*/
/*    border-radius: 50px;*/
/*    overflow: hidden;*/
/*    border: 1px solid rgba(255, 255, 255, 0.2);*/
/*}*/

/*.newsletter-form .form-control {*/
/*    background: transparent;*/
/*    border: none;*/
/*    color: var(--contrast-color);*/
/*    padding: 12px 20px;*/
/*}*/

/*.newsletter-form .form-control::placeholder {*/
/*    color: rgba(255, 255, 255, 0.7);*/
/*}*/

/*.newsletter-form .form-control:focus {*/
/*    background: transparent;*/
/*    border: none;*/
/*    color: var(--contrast-color);*/
/*    box-shadow: none;*/
/*}*/

/*.newsletter-form .btn {*/
/*    background: rgba(255, 255, 255, 0.2);*/
/*    border: none;*/
/*    color: var(--contrast-color);*/
/*    padding: 12px 20px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.newsletter-form .btn:hover {*/
/*    background: rgba(255, 255, 255, 0.3);*/
/*    transform: scale(1.05);*/
/*}*/

/*!* Responsive Design *!*/
/*@media (max-width: 1200px) {*/
/*    .blog-sidebar {*/
/*        padding-left: 20px;*/
/*    }*/
/*}*/

/*@media (max-width: 991px) {*/
/*    .blog-header-title {*/
/*        font-size: 42px;*/
/*    }*/

/*    .blog-sidebar {*/
/*        padding-left: 0;*/
/*        margin-top: 50px;*/
/*    }*/

/*    .sidebar-widget {*/
/*        padding: 25px;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .blog-header-section {*/
/*        padding: 100px 0 40px;*/
/*    }*/

/*    .blog-header-title {*/
/*        font-size: 36px;*/
/*    }*/

/*    .blog-header-description {*/
/*        font-size: 16px;*/
/*    }*/

/*    .blog-content-section {*/
/*        padding: 60px 0 80px;*/
/*    }*/

/*    .blog-post-image {*/
/*        height: 200px;*/
/*    }*/

/*    .blog-post-content {*/
/*        padding: 25px;*/
/*    }*/

/*    .blog-post-title a {*/
/*        font-size: 20px;*/
/*    }*/

/*    .blog-post-footer {*/
/*        flex-direction: column;*/
/*        align-items: flex-start;*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .blog-header-title {*/
/*        font-size: 32px;*/
/*    }*/

/*    .blog-post-content {*/
/*        padding: 20px;*/
/*    }*/

/*    .sidebar-widget {*/
/*        padding: 20px;*/
/*    }*/

/*    .recent-post-item {*/
/*        gap: 10px;*/
/*    }*/

/*    .recent-post-image {*/
/*        width: 60px;*/
/*        height: 60px;*/
/*    }*/
/*}*/
