/* @import url("scss/style.css"); */

/* Modern Blog Design CSS */
/* This file contains the modern blog card design styling */

/* Blog Post Cards - Modern Card Design */
.content-area .hentry {
    position: relative;
    background: #ffffff;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.content-area .hentry:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Remove the old separator line */
.content-area .hentry:after {
    display: none;
}

.content-area .hentry:first-child {
    padding-top: 30px;
}

/* Post Title Styling */
.hentry .title-post {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    padding-bottom: 15px;
    margin: 0 0 15px 0;
    color: #000000;
    font-family: 'Lato', sans-serif; 
}

.hentry .title-post a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hentry .title-post a:hover {
    color: #F59C44;
}

/* Meta Post Styling */
.hentry .meta-post {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hentry .meta-post,
.hentry .meta-post a {
    color: #666666;
    font-size: 14px;
    text-decoration: none;
}

.hentry .meta-post a:hover {
    color: #F59C44;
}

/* Featured Image Styling */
.content-area .entry-thumb {
    text-align: center;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 6px;
}

.content-area .entry-thumb img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.content-area .entry-thumb:hover img {
    transform: scale(1.05);
}

/* Continue Reading Button */
#primary .entry-post>a {
    letter-spacing: 1px;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.2;
    padding: 12px 24px;
    background: #F59C44;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 20px;
}

#primary .entry-post>a:hover {
    background: #e8892f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 156, 68, 0.3);
}

/* Post Content Styling */
.hentry .entry-post {
    margin-bottom: 20px;
}

.hentry .entry-post p {
    font-size: 16px;
    line-height: 1.6;
    color: #525252;
    margin-bottom: 15px;
}

/* Social Sharing Buttons */
.blog-social-share {
    margin-top: 20px;
    padding-top: 9px;
}
@media (max-width:768px) {
  .blog-social-share{margin-top: 25px;}
}

.blog-social-share .share-label {
    font-size: 11px;
    color: #999;
    margin-right: 15px;
    font-weight: 500;
}

.blog-social-share .social-icons {
    display: inline-block;
}

.blog-social-share .social-icons a {
    display: inline-block;
    margin-right: 25px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent !important;
}
.blog-social-share .social-icons a i{font-size: 13px;color: #e8892f;}

.blog-social-share .social-icons a.facebook {
    background: #3b5998;
}

.blog-social-share .social-icons a.twitter {
    background: #1da1f2;
}

.blog-social-share .social-icons a.pinterest {
    background: #bd081c;
}

.blog-social-share .social-icons a.google-plus {
    background: #dd4b39;
}

.blog-social-share .social-icons a:hover {
    transform: scale(1.2)
}

/* Blog Layout Improvements */
.content-area .post-wrap {
    padding-right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-area .hentry {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .hentry .title-post {
        font-size: 20px;
    }
    
    .content-area .post-wrap {
        padding-right: 0;
    }
}

/* Sidebar Styling */
#secondary {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 0;
}

#secondary .widget {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

#secondary .widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

#secondary .widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#secondary .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#secondary .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

#secondary .widget ul li:last-child {
    border-bottom: none;
}

#secondary .widget ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

#secondary .widget ul li a:hover {
    color: #F59C44;
}

/* Popular Posts Widget */
.popular-posts .blog-posts-published {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.popular-posts .blog-posts-published:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.popular-posts .thumbnail-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.popular-posts .thumbnail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.popular-posts .trending-posts h3 {
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.popular-posts .trending-posts h3 a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
}

.popular-posts .trending-posts h3 a:hover {
    color: #F59C44;
}

.popular-posts .trending-posts p {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

/* Search Widget */
#secondary .widget_search input[type="search"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

#secondary .widget_search input[type="search"]:focus {
    border-color: #F59C44;
    outline: none;
}

/* Blog Hero Slider */
.blog-hero-slider {
    position: relative;
    aspect-ratio: 1140/570;
    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);
}

.blog-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.blog-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.blog-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.blog-slide.active {
    opacity: 1;
}

.blog-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.blog-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.blog-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.blog-slide-text {
    color: #ffffff;
    max-width: 600px;
}

.blog-slide-category {
    display: inline-block;
    background: #F59C44;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.blog-slide-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Lato', sans-serif;
}

.blog-slide-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-slide-title a:hover {
    color: #F59C44;
}

.blog-slide-excerpt {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.blog-slide-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.blog-slide-meta span {
    display: flex;
    align-items: center;
    font-size: 14px;
    opacity: 0.8;
}

.blog-slide-meta i {
    margin-right: 8px;
    color: #F59C44;
}

.blog-slide-btn {
    display: inline-block;
    background: #F59C44;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blog-slide-btn:hover {
    background: #F68220;
    background: #F59C44;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 156, 68, 0.3);
}

/* Slider Navigation */
.blog-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.blog-slider-prev,
.blog-slider-next,.slider-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: #F68220;
    color: #F59C44;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);
    background: #fff;
}

.blog-slider-prev,.slider-nav button.slider-prev{
    left: 30px;
}

.blog-slider-next,.slider-nav button.slider-next {
    right: 30px;
}
.slider-nav button.slider-prev{}
.slider-nav button.slider-next{}

.blog-slider-prev:hover,
.blog-slider-next:hover,.slider-nav button:hover {
    background: #F68220;
    background: #F59C44;
    transform: translateY(-50%) scale(1.1);
    color: #fff;
}

/* Slider Dots */
.blog-slider-dots {
    position: absolute;
    bottom: 31px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 3;
}

.blog-slider-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: transparent;    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-slider-dot.active,
.blog-slider-dot:hover {
    background: #F59C44;
    border-color: #F59C44;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero-slider {
        height: 400px;
    }
    
    .blog-slide-title {
        font-size: 28px;
    }
    
    .blog-slide-excerpt {
        font-size: 16px;
    }
    
    .blog-slide-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .blog-slider-prev,
    .blog-slider-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .blog-slider-prev {
        left: 10px;
    }
    
    .blog-slider-next {
        right: 10px;
    }
}

/* Post Media Types - Dynamic Media Display */
.post-media-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

/* YouTube Video Container */
.youtube-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

/* Custom Image */
.custom-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.custom-image:hover {
    transform: scale(1.05);
}

/* Post Image Slider */
.post-image-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-image {
    display: none;
    position: relative;
}

.slider-image.active {
    display: block;
}

.slider-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.slider-image:hover img {
    transform: scale(1.05);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.slider-nav button {
    /* background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
}

.slider-nav button:hover {
    background: #ff6b35;
    color: white;
    background: #F59C44;
    /* transform: scale(1.1); */
}

.slider-nav button i {
    font-size: 14px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active,
.slider-dot:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    background: #F59C44;
    border-color:#F59C44;
}

/* Responsive adjustments for media */
@media (max-width: 768px) {
    .slider-nav {
        padding: 0 10px;
    }
    
    .slider-nav button {
        width: 35px;
        height: 35px;
    }
    
    .slider-nav button i {
        font-size: 12px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Modern Pagination Styling - WP-PageNavi Plugin */
.wp-pagenavi {
    margin: 40px 0;
    text-align: left;
    clear: both;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wp-pagenavi .pages {
    display: none; /* Hide "Page X of Y" text */
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    margin: 0 3px;
    padding: 8px 12px;
    border-radius: 50%;
    min-width: 35px;width: 35px;;
    height: 35px;
}

/* Current page - green circle */
.wp-pagenavi .current {
    background-color: #FF7A00 !important;
    color: #fff !important;
    border: 1px solid #FF7A00 !important;


    background-color: #F59C44 !important;
    border: 1px solid #F59C44 !important;
}

/* Page numbers - simple text */
.wp-pagenavi a:not(.next):not(.prev):not(.last):not(.first) {
    color: #333 !important;
    border: none !important;
    min-width: auto !important;
    height: auto !important;
    height: 36px !important;;
    width: 36px !important;
    padding: 5px 0 !important;
    font-weight: 700;
    font-size: 13px;
    font-family: 'Montserrat';

}

.wp-pagenavi a:not(.next):not(.prev):not(.last):not(.first):hover {
    color: #FF7A00 !important;
}

/* Hide "Last" text, show only arrow */
.wp-pagenavi .last {
    font-size: 0;
}

.wp-pagenavi .last:after {
    content: "→";
    font-size: 16px;
}

/* Hide "First" text, show only arrow */
.wp-pagenavi .first {
    font-size: 0;
}

.wp-pagenavi .first:after {
    content: "←";
    font-size: 16px;
}

/* Separate page numbers and arrows */
.wp-pagenavi .pages,
.wp-pagenavi a:not(.next):not(.prev):not(.last):not(.first),
.wp-pagenavi .current {
    order: 1;
}

.wp-pagenavi .next,
.wp-pagenavi .prev,
.wp-pagenavi .last,
.wp-pagenavi .first {
    order: 2;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .wp-pagenavi a,
    .wp-pagenavi span {
        min-width: 30px;
        height: 30px;
        font-size: 12px;width: 30px;
        margin: 0 2px;
    }
    
    .wp-pagenavi a:not(.next):not(.prev):not(.last):not(.first) {
        min-width: auto !important;
        height: auto !important;
        padding: 3px 0 !important;
        min-height: 30px;width: 30px !important;;
    }
}

/* Last Two Posts Horizontal Layout */
.last-two-posts {
    margin-bottom: 30px;
}

.last-two-posts-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #fff;;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    align-items: center;
}


.last-two-posts-content:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.last-two-posts-image {
    flex: 0 0 180px;
    height: 70px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.last-two-posts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.last-two-posts-image:hover img {
    transform: scale(1.02);
}

.last-two-posts-text {
    flex: 1;
    padding: 20px 20px 20px 0;
    display: flex; 
    flex-direction: column;
    justify-content: center;padding: 0;
}

.last-two-posts .title-post {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.last-two-posts .title-post a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.last-two-posts .title-post a:hover {
    color: #ff6b35;
}

.last-two-posts .meta-post {
    font-size: 13px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Lato", sans-serif;opacity: 0.5;
}

.last-two-posts .entry-post {
    margin: 0;
    flex: 1;
}

.last-two-posts .entry-post p {
    margin-bottom: 12px;
    line-height: 1.5;
    color: #666;
    font-size: 14px;
}

.last-two-posts ._continuereading {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 6px 12px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.last-two-posts ._continuereading:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

/* Hide categories, tags, and social sharing for last two posts */
.last-two-posts .post-meta-info,
.last-two-posts .blog-social-share {
    display: none;
}

/* Responsive design for last two posts */
@media (max-width: 768px) {
    .last-two-posts-content {
        flex-direction: column;
        text-align: center;
    }
    
    .last-two-posts-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
    
    .last-two-posts-text {
        padding: 0;
    }
    
    .last-two-posts .title-post {
        font-size: 18px;
    }
}


/* Post Meta Info - Categories and Tags */
.post-meta-info {
    margin: 15px 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
        margin: 22px 0 20px 0;
    font-size: 14px;
}

.post-categories,
.post-tags {
    margin-bottom: 10px;
}

.post-categories:last-child,
.post-tags:last-child {
    margin-bottom: 0;
}

.meta-label {
    font-weight: 600;
    color: #333;
    margin-right: 15px;display: inline-block;;
}


.post-categories a:hover,
.post-tags a:hover {
    color: #e8892f;
}

.post-categories a,
.post-tags a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;font-size: 11px;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .post-meta-info {
        font-size: 13px;
        margin: 30px 0 15px 0;
    }
    
    .meta-label {
        display: block;
        margin-bottom: 5px;
        font-size: 11px;
    }
    
    .post-categories,
    .post-tags {
        margin-bottom: 15px;
    }

    .wp-pagenavi{flex-wrap: wrap;;}
}
@media (max-width: 767px){
.post-categories a,
.post-tags a{font-family: 'Montserrat';letter-spacing: 0.4px;}
}

/* Remove old styling that conflicts */
.content-area .hentry:first-child:after {
    display: none;
}

/* ===== SELECTED POSTS WIDGET STYLES ===== */
.selected-posts-widget {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.selected-posts-widget .widget-title {
      margin: 0px 0 20px 0;
    font-weight: bold;
    line-height: 1em;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Montserrat';
}

.selected-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.selected-post-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.selected-post-item:last-child {
  border-bottom: none;
}

.selected-post-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 4px;
}

.selected-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.selected-post-thumbnail:hover .selected-post-image {
  transform: scale(1.05);
}

.selected-post-content {
  flex: 1;
  min-width: 0;
}

.selected-post-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.selected-post-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.selected-post-title a:hover {
  color: #F59C44;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .selected-posts-widget {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .selected-post-item {
    gap: 10px;
  }
  
  .selected-post-thumbnail {
    width: 50px;
    height: 50px;
  }
  
  .selected-post-title {
    font-size: 13px;
  }
}

/* ===== SEARCH WIDGET STYLES ===== */
.search-widget {
      background: #fff;
    width: 100%;
    padding: 10px;
    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.search-container {
  width: 100%;
}

.search-form {
  width: 100%;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
  
}

.search-field {
  flex: 1;
  padding: 8px 5px;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333333;
  outline: none;
  font-family: inherit;
}

.search-field::placeholder {
  color: #333;
}

.search-submit {
  background: transparent;
  border: none;
  padding: 12px 10px;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.search-submit:hover {
  background: #e8892f;
  transform: scale(1.05);
}

.search-submit i {
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .search-widget {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .search-field {
    padding: 10px 15px;
    font-size: 13px;
  }
  
  .search-submit {
    padding: 10px 15px;
    min-width: 45px;
  }
  
  .search-submit i {
    font-size: 14px;
  }
}

/* ===== TODAY'S POST WIDGET STYLES ===== */
.today-post-widget {
    background: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.today-post-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.today-post-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.today-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.today-post-thumbnail:hover .today-post-image {
  transform: scale(1.05);
}

.today-post-content {
  text-align: left;
}

.today-post-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 10px 0;
}

.today-post-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.today-post-title a:hover {
  color: #F59C44;
}

.today-post-meta {
  margin-bottom: 0;
}

.today-post-date {
  font-size: 13px;
  color: #999999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .today-post-widget {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .today-post-thumbnail {
    height: 150px;
  }
  
  .today-post-title {
    font-size: 15px;
  }
  
  .today-post-date {
    font-size: 12px;
  }
}

/* ===== DON'T MISS THESE WIDGET STYLES ===== */
/* .dont-miss-widget {
  background: #ffffff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */

.dost-miss-widget .widget-title {
  margin: 0px 0 20px 0;
    font-weight: bold;
    line-height: 1em;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Montserrat';
}

.dont-miss-list {
  display: flex;
  flex-direction: column;
}

.dont-miss-item:last-child {
  border-bottom: none;
}

.dont-miss-thumbnail {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 4px;
}

.dont-miss-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dont-miss-thumbnail:hover .dont-miss-image {
  transform: scale(1.05);
}

.dont-miss-content {
  flex: 1;
  min-width: 0;
}

/* .dont-miss-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}

.dont-miss-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.dont-miss-title a:hover {
  color: #F59C44;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
  .dont-miss-widget {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .dont-miss-item {
    gap: 8px;
  }
  
  .dont-miss-thumbnail {
    width: 45px;
    height: 45px;
  }
  
  .dont-miss-title {
    font-size: 12px;
  }
}

/* ===== ABOUT ME WIDGET STYLES ===== */
.about-me-widget {
  background: #ffffff;
  padding: 20px;padding: 0;overflow: hidden;;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 4px 0 0 rgba(0,0,0,0.1);
}

.about-me-widget .widget-title {
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 20px 0;margin-bottom: 0;
  padding: 20px;

    line-height: 1em;
    color: #000;
    font-family: 'Montserrat';
}

.about-me-content {
  text-align: center;
}

.about-me-image {
  /* margin-bottom: 15px; */
}

.about-me-profile-img {object-fit: cover;
  transition: all 0.3s ease;width: 100%;aspect-ratio: 300/224;height: auto;
}

.about-me-profile-img:hover {
  border-color: #F59C44;
  transform: scale(1.05);
}

.about-me-title {
  text-align: center;
  margin-top: 10px;
}

.about-me-title h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-me-widget {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .about-me-profile-img {
    
  }
  
  .about-me-title h4 {
    font-size: 14px;
  }
}

/* ===== BANNER AD WIDGET STYLES ===== */
.banner-ad-widget {
      background: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.banner-ad-item {
  text-align: center;
}

.banner-ad-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
  display: block;
}

.banner-ad-image:hover {
  transform: scale(1.02);
}

.banner-ad-placeholder {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: 6px;
  padding: 40px 20px;
  text-align: center;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-ad-text {
  color: #6c757d;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-ad-text-only {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 6px;
  border: 2px dashed #dee2e6;
}

.banner-ad-text-only h4 {
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.banner-ad-link {
  display: inline-block;
  background: #F59C44;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.banner-ad-link:hover {
  background: #e8892f;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-ad-widget {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .banner-ad-placeholder {
    padding: 30px 15px;
    min-height: 100px;
  }
  
  .banner-ad-text {
    font-size: 12px;
  }
}

/* ===== SOCIAL MEDIA WIDGET STYLES ===== */
.social-media-widget {
      background: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.social-media-widget .widget-title {
margin: 0px 0 23px 0;
    font-weight: bold;
    line-height: 1em;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
        font-family: 'Montserrat';
}

.social-icons-container {
  text-align: center;
}

.social-icons-list {
  display: flex;
  /* gap: 15px; */
  flex-wrap: wrap;
  /* epadding: 0 17px; */
}

.social-icon {
  /* display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent; */

    display: block;line-height: normal;margin-right: 30px;font-size: 18px;;
}
.social-icon i{color: #333;;}
.social-icon i:hover{color: #F59C44;}

.social-icon:hover {
  /* transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #ffffff; */
}

/* .social-icon.facebook {
  background-color: #3b5998;
}

.social-icon.facebook:hover {
  background-color: #2d4373;
  border-color: #2d4373;
}

.social-icon.twitter {
  background-color: #1da1f2;
}

.social-icon.twitter:hover {
  background-color: #0d8bd9;
  border-color: #0d8bd9;
}

.social-icon.pinterest {
  background-color: #bd081c;
}

.social-icon.pinterest:hover {
  background-color: #a00716;
  border-color: #a00716;
}

.social-icon.linkedin {
  background-color: #0077b5;
}

.social-icon.linkedin:hover {
  background-color: #005885;
  border-color: #005885;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #e6852a 0%, #d55a2f 25%, #d01e36 50%, #c01a59 75%, #ad1477 100%);
  border-color: #ad1477;
} */

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-media-widget {
    padding: 20px;
  }
  
  .social-icons-list {
    
  }
  
  .social-icon {
   
    margin-right: 15px;
  }
}
@media (max-width: 768px) {
  .social-icon{margin-right: 30px;}
}

/* ===== LINKEDIN POSTS WIDGET STYLES ===== */
.linkedin-posts-widget {
      background: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.linkedin-posts-widget .widget-title {
      margin: 0px 0 20px 0;
    font-weight: bold;
    line-height: 1em;
    font-size: 13px;
    text-transform: uppercase;
    color: #000;
    font-family: 'Montserrat';
}

.linkedin-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.linkedin-post-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.linkedin-post-item:last-child {
  border-bottom: none;
}

.linkedin-post-thumbnail {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 4px;
}

.linkedin-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.linkedin-post-thumbnail:hover .linkedin-post-image {
  transform: scale(1.05);
}

.linkedin-post-content {
  flex: 1;
  min-width: 0;
}

.linkedin-post-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 8px 0;
}

.linkedin-post-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.linkedin-post-title a:hover {
  color: #0077b5; /* LinkedIn brand color */
}

.linkedin-post-meta {
  margin-bottom: 0;
}

.linkedin-post-date {
  font-size: 12px;
  color: #999999;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .linkedin-posts-widget {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .linkedin-post-item {
    gap: 10px;
  }
  
  .linkedin-post-thumbnail {
    width: 50px;
    height: 50px;
  }
  
  .linkedin-post-title {
    font-size: 13px;
  }
  
  .linkedin-post-date {
    font-size: 11px;
  }
}

.linkedin-no-posts {
  text-align: center;
  padding: 20px;
  color: #999999;
  font-style: italic;
}

/* ===== POST META FOOTER STYLES ===== */
.post-meta-footer {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e5e5e5;
}

.post-tags,
.post-categories {
  margin-bottom: 20px;
}

.post-tags:last-child,
.post-categories:last-child {
  margin-bottom: 0;
}

.meta-label {
  font-size: 11px;
  font-weight: 500;
  color: #999;
  margin: 0 0 12px 0;
  text-transform: normal;
  letter-spacing: 0.5px;
}

.tags-list,
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-link,
.category-link {
  display: inline-block;
  padding: 6px 12px;
  background: #f8f9fa;
  color: #666666;
  text-decoration: none;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.tag-link:hover,
.category-link:hover {
  background: #F59C44;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(245, 156, 68, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .post-meta-footer {
    margin-top: 20px;
    padding-top: 20px;
  }
  
  .meta-label {
    font-size: 11px;
    margin-right: 6px;margin-bottom: 0;
  }
  
  .tag-link,
  .category-link {
    padding: 5px 10px;
    font-size: 12px;
  }
  
  .tags-list,
  .categories-list {
    gap: 6px;
  }
}

/* ===== BLOG DETAIL MEDIA SECTION STYLES ===== */
.entry-media {
  margin: 20px 0 30px 0;
  border-radius: 8px;
  overflow: hidden;
}

.entry-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* YouTube Video Container */
.youtube-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */

  overflow: hidden
}

.youtube-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Video Container */
.video-container {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

/* Custom Image */
.custom-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Post Image Slider */
.post-image-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-image {
  display: none;
  width: 100%;
}

.slider-image.active {
  display: block;
}

.slider-image img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none;
}

.slider-prev,
.slider-next {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
  background: rgba(0, 0, 0, 0.9);
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dot.active {
  background: white;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .entry-media {
    margin: 15px 0 20px 0;
  }
  
  .slider-nav {
    padding: 0 10px;
  }
  
  .slider-prev,
  .slider-next {
    width: 35px;
    height: 35px;
  }
  
  .slider-dots {
    bottom: 10px;
  }
  
  .slider-dot {
    width: 8px;
    height: 8px;
  }
}

/* ===== POST NAVIGATION SECTION STYLES ===== */
.post-navigation-section {
  margin: 20px 0;
}

.post-nav-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.post-nav-item {
    background: #fff;position: relative;
    margin-bottom: 30px;padding: 17px 40px;
    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);margin-bottom: 0;
  }
.post-nav-item:hover {background: #e8892f;
}

.post-nav-title {
  color: #000;
  margin: 0 0 15px 0;margin-bottom: 0;
  text-transform: uppercase;
letter-spacing: 0.08em;
    font-family: 'Montserrat';
      font-size: 13px;
    padding-bottom: 6px;
    font-style: normal;
    font-weight: bold;
}
.post-nav-item:hover .post-nav-title,.post-nav-item:hover .post-nav-link{color: #fff !important;}

.post-nav-content {
  overflow: hidden;;
  margin: 0;
}

.post-nav-link {
  text-decoration: none;

    font-weight: normal;
    font-size: 13px;
    letter-spacing: 0.1px;;
    text-transform: none;
    color: #000;

}

.post-nav-link:hover {
  color: #F59C44;
}
.post-nav-link::after{position: absolute;inset: 0;content: '';}

.no-post-available {
  color: #999999;
  font-style: italic;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .post-navigation-section {
    margin: 20px 0;;
  }
  
  .post-nav-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .post-nav-item {
    padding: 15px;
  }
  
  .post-nav-title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .post-nav-link {
    font-size: 14px;
  }
  
  .no-post-available {
    font-size: 13px;
  }
}

/* ===== AUTHOR SECTION STYLES ===== */
.author-section {
  margin: 30px 0;
  padding: 25px 0;
  border-top: 1px solid #e5e5e5;
}

.author-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  flex: 1;
}

.author-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 15px 0;
}

.author-posts-link {
  margin-top: 15px;
}

.see-all-posts-btn {
  display: inline-block;
  background: #F59C44;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.see-all-posts-btn:hover {
  background: #e8892f;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .author-section {
    margin: 20px 0;
    padding: 20px 0;
  }
  
  .author-section-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .author-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  
  .author-avatar img {
    width: 60px;
    height: 60px;
  }
  
  .author-bio {
    font-size: 13px;
  }
  
  .see-all-posts-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
}

/* ===== RELATED POSTS SECTION STYLES ===== */
.related-posts-section {
  margin: 20px 0;
  padding: 0 40px;
}

.related-posts-title {
  font-size: 13px;
  font-weight: 700;
  color: #000;font-family: 'Montserrat';
  padding:  30px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.related-post-item {
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: none;margin-bottom: 20px;
}

.related-post-thumbnail {
  width: 100%;
  aspect-ratio: 233/155;
  overflow: hidden;
  position: relative;

}

.related-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.related-post-content {
  padding: 0;
}

.related-post-title {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4em;
  padding: 20px;
  color: #333333;text-align: center;;
}
.related-post-item:hover .related-post-title a{color: #e8892f;}

.related-post-title a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-post-title a:hover {
  color: #F59C44;
}

.related-post-description {
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
  margin: 0;
  font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .related-posts-section {
    margin: 30px 0;
  }
  
  .related-posts-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .related-post-thumbnail {
    height: 200px;
  }
  
  .related-post-content {
    padding: 20px;
  }
  
  .related-post-title {
    font-size: 18px;
  }
  
  .related-post-description {
    font-size: 14px;
  }
  .header-bottom{padding-right: 2.0rem;}
}

.blog-listing-page main article .text-content-box .content-box img{max-width: 100%;height: auto;margin: 1.5em 0;}

.wp-pagenavi span.current,.wp-pagenavi .last{box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);}
.search-results .blog-slider-dots{display: none;}
.search-results .blog-slider-nav{display: none;}

.blog-listing-page main article .post-media-container img{object-fit: cover;object-position: top;}


/* Navigation arrows - positioned on the right */
.wp-pagenavi .next,
.wp-pagenavi .prev,
.wp-pagenavi .last,
.wp-pagenavi .first,.wp-pagenavi .nextpostslink,.wp-pagenavi .previouspostslink {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    color: #666 !important;
    min-width: 3px !important;
    height: 35px !important;
    padding: 8px !important;
    margin-left: auto !important;
    box-shadow: 3px 4px 0 0 rgba(0, 0, 0, 0.1);
}
.wp-pagenavi .next:hover,
.wp-pagenavi .prev:hover,
.wp-pagenavi .last:hover,
.wp-pagenavi .first:hover,.wp-pagenavi .nextpostslink:hover,.wp-pagenavi .previouspostslink:hover{background-color: #000 !important;}
.wp-pagenavi .last,.wp-pagenavi .first,.wp-pagenavi .nextpostslink{width: 35px !important;width: 35px !important;border-radius: 50%;padding: 0;display: inline-flex;justify-self: center;align-items: center;;}
.extend{order: 1;display: none !important;}


.wp-pagenavi .next:hover,
.wp-pagenavi .prev:hover,
.wp-pagenavi .last:hover,
.wp-pagenavi .first:hover {
    background-color: #FF7A00 !important;
    border-color: #FF7A00 !important;
    color: #fff !important;
} 


@media (max-width:767px) {
  .post-nav-item.next-post{text-align: right;}
  .related-posts-title{padding: 30px 0;margin: 0;}
  .related-post-title{padding: 0;font-size: 13px;}
  .related-posts-grid{display: block;}
  
}




/* below CSS for new blog lisiting page. */

.blog-listing-page main article .text-content-box .content-box .wp-block-table{margin-bottom: 30px;}
.blog-listing-page main article .text-content-box .content-box table{margin-bottom: 40px;border: 1px solid #000;;}
.blog-listing-page main article .text-content-box .content-box table *{font-family: 'roboto';}
.blog-listing-page main article .text-content-box .content-box table thead th,.blog-listing-page main article .text-content-box .content-box table thead td{font-weight: 700;font-size: 16px;border-bottom: 1px solid #000;padding: 10px;color: #000;}

.blog-listing-page main article .text-content-box .content-box table td{font-weight: 400;font-size: 14px;;letter-spacing: 0;padding: 10px;border-bottom: 1px solid #ddd;color: #000;}
.blog-listing-page main article .text-content-box .content-box table tbody tr:last-child td{border: 0;}



.entry-header .title-post a:focus{}

.blog-listing-page .sidebar-blog-listing-box .inner-secondary .selected-posts .posts-published .blog-posts-published:not(.dont-miss-item) .thumbnail-image img{object-fit: cover;}

.blog-listing-page main article .text-content-box .content-box p, .blog-listing-page main article .text-content-box .content-box ul li, .blog-listing-page main article .text-content-box .content-box ol li{font-family: roboto;}
.blog-listing-page main article .text-content-box .content-box p span, .blog-listing-page main article .text-content-box .content-box ul li span, .blog-listing-page main article .text-content-box .content-box ol li span{font-family: 'Muli', sans-serif;font-size: 12px;font-family: roboto;
    color: #333;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 1.2em;}

    html body div *, html body div :focus {outline:  none !important;}

/* .blog-listing-page main article .text-content-box .content-box p strong,.blog-listing-page main article .text-content-box .content-box p b, .blog-listing-page main article .text-content-box .content-box ul li b,.blog-listing-page main article .text-content-box .content-box ul li strong, .blog-listing-page main article .text-content-box .content-box ol li strong,.blog-listing-page main article .text-content-box .content-box ul li b{font-family: 'Muli', sans-serif;} */
