
main {
  padding: 0px;
  margin: 0px auto;
  background-color: #ffffff;
  padding-top: 0px;
}


/* .post {
  margin: 20px auto;
  padding: 20px;
  max-width: 1080px;
  background-color: #ffffff;

  overflow: hidden;
  text-align: left;
  position: relative;
} */

/* .post-title-wrapper h1,
.post h1 {
  text-align: center;
  padding: 25px;
  margin: 25px auto;
  font-family: inherit;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 1.45px;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.2;
} */


/* .post h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-family: inherit;
  font-size: 30px;
  line-height: 1.4;
} */


/* .post h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 24px;
  line-height: 1.4;
} */


/* .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 10px 0;
  background-color: #f8f8f8;
  border-top: 1px solid #dddddd;
  font-family: inherit;
  font-size: 18px;
  text-align: center;
} */

/* .navigation a {
  text-decoration: none;
  padding: 10px;
  transition: color 0.3s ease;
} */

/* .navigation a:hover {
  text-decoration: underline;
} */

/* .navigation .nav-previous,
.navigation .nav-next {
  margin: 0 10px;
} */


/* =========================================================
   TNT DENTAL - BLOG DESIGN
   ========================================================= */

.blog-page {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 30px 20px 70px;
    box-sizing: border-box;
    color: #173d41;
}


/* =========================================================
   TOP SEARCH + CATEGORY FILTERS
   ========================================================= */


.blog-categories {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.blog-categories::-webkit-scrollbar {
    display: none;
}

.blog-categories a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 38px;
    padding: 0 15px;

    border: 1px solid #e4e0dc;
    border-radius: 22px;

    background: #fff;

    color: #173437;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
    white-space: nowrap;

    transition: all .2s ease;
}

.blog-categories a:hover {
    border-color: #70419a;
    color: #70419a;
}

.blog-categories a.active {
    border-color: #70419a;
    background: #70419a;
    color: #fff;
}


/* =========================================================
   MAIN BLOG + SIDEBAR
   ========================================================= */

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 307px;
    gap: 39px;

    align-items: start;
}

.blog-main {
    min-width: 0;
}


/* =========================================================
   POSTS GRID
   ========================================================= */

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}


/* =========================================================
   BLOG CARD
   ========================================================= */

.blog-card {
    overflow: hidden;

    margin: 0;
    padding: 0;

    border: 1px solid #e2e0dc;
    border-radius: 15px;

    background: #fff;

    box-shadow: 0 4px 14px rgba(20, 40, 40, .045);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(20, 40, 40, .10);
}


/* =========================================================
   FEATURED IMAGE
   ========================================================= */

.blog-card-image {
    position: relative;

    display: block;

    width: 100%;
    height: 183px;

    overflow: hidden;

    background: #e8e5df;

    text-decoration: none;
}

.blog-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border: 0;

    transition: transform .35s ease;
}

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


/* =========================================================
   CATEGORY BADGE
   ========================================================= */

.blog-card-category {
    position: absolute;

    left: 16px;
    top: 13px;

    display: inline-flex;
    align-items: center;

    min-height: 25px;
    padding: 0 10px;

    box-sizing: border-box;

    border-radius: 20px;

    background: #315254;

    color: #fff;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.blog-card-content {
    padding: 21px 19px 23px;
}

.blog-date {
    margin-bottom: 8px;

    color: #71409c;

    font-size: 12px;
    font-weight: 600;
}

.blog-card h2 {
    margin: 0 0 17px;
    color: #173d41;
    font-size: 17px !important;
    line-height: 1.28;
    font-weight: 700;
}

.blog-card h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #70419a;
}

.blog-card-content p {
    margin: 0 0 20px;

    color: #384d50;

    font-size: 13px;
    line-height: 1.7;
}

.read-more {
    color: #23852c;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}

.read-more span {
    display: inline-block;
    margin-left: 4px;

    transition: transform .2s ease;
}

.read-more:hover {
    color: #176b20;
}

.read-more:hover span {
    transform: translateX(4px);
}


/* =========================================================
   SIDEBAR
   ========================================================= */

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


/* =========================================================
   APPOINTMENT CARD
   ========================================================= */

.appointment-card {
    padding: 27px 22px 25px;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #75429f 0%,
            #68368d 100%
        );

    color: #fff;

    text-align: center;

    box-shadow:
        0 8px 25px rgba(98, 52, 136, .15);
}

.appointment-card h2 {
    margin: 0 0 13px;

    color: #fff;

    font-size: 19px;
    line-height: 1.3;
}

.appointment-card p {
    max-width: 250px;

    margin: 0 auto 21px;

    color: rgba(255,255,255,.93);

    font-size: 13px;
    line-height: 1.65;
}

.appointment-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 49px;

    border-radius: 28px;

    background: #5db63a;

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: background .2s ease;
}

.appointment-button:hover {
    background: #69c949;
    color: #fff;
}

.phone-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 49px;
    margin-top: 9px;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,.16);
    border-radius: 28px;

    color: rgba(255,255,255,.55);

    font-size: 13px;

    text-decoration: none;
}

.phone-button:hover {
    color: #fff;
    background: rgba(255,255,255,.06);
}


/* =========================================================
   CATEGORIES BOX
   ========================================================= */

.sidebar-box {
    padding: 21px 22px;

    border: 1px solid #e2e0dc;
    border-radius: 15px;

    background: #fff;
}

.sidebar-box h3 {
    margin: 0 0 13px;

    color: #71409c;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;

    text-transform: uppercase;
}
main ul li:before{
     display: none !important;
}
.category-list {
    list-style: none;

    margin: 0;
    padding: 0;
}
.category-list li:before{
    display: none !important;
}

.category-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e6e3df;
}

.category-list li:last-child {
    border-bottom: 0;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 45px;

    color: #202c2e;

    font-size: 13px;

    text-decoration: none;
}

.category-list a:hover {
    color: #70419a;
}

.category-list strong {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    border-radius: 50%;

    background: #f4f4f1;

    color: #606968;

    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.blog-pagination {
    margin-top: 40px;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 38px;
    padding: 0 12px;

    border: 1px solid #e2e0dc;
    border-radius: 20px;

    background: #fff;

    color: #294447;

    font-size: 12px;

    text-decoration: none;
}

.blog-pagination .current {
    border-color: #70419a;

    background: #70419a;

    color: #fff;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 1000px) {

    .blog-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-search {
        width: 100%;
    }

    .blog-categories {
        width: 100%;
    }

    .blog-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 25px;
    }

}


@media (max-width: 780px) {

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: 2;
    }

    .blog-main {
        order: 1;
    }

}


@media (max-width: 560px) {

    .blog-page {
        padding: 25px 15px 50px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-image {
        height: 210px;
    }

    .blog-card-content {
        padding: 19px 17px 21px;
    }

}


/* =========================================================
   SINGLE BLOG ARTICLE
   ========================================================= */

.single-blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 307px;
    gap: 39px;
    align-items: start;
}


/* =========================================================
   ARTICLE
   ========================================================= */

.single-blog-post {
    min-width: 0;
    margin: 0;
    padding: 0;
}


/* Category */

.single-blog-category {
    display: inline-flex;
    align-items: center;

    min-height: 27px;
    padding: 0 12px;

    border-radius: 20px;

    background: #315254;

    color: #fff;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}


/* Date */

.single-blog-date {
    margin-top: 15px;

    color: #70419a;

    font-size: 13px;
    font-weight: 600;
}


/* Title */

.single-blog-title {
    margin: 8px 0 25px;

    color: #173d41;

    font-size: 38px;
    line-height: 1.15;
    font-weight: 700;
}


/* Featured image */

.single-blog-featured-image {
    width: 100%;
    max-height: 480px;

    overflow: hidden;

    margin-bottom: 30px;

    border-radius: 15px;
}

.single-blog-featured-image img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 480px;

    object-fit: cover;

    border: 0;
}


/* =========================================================
   ARTICLE CONTENT
   ========================================================= */

.single-blog-content {
    color: #304b4e;

    font-size: 16px;
    line-height: 1.8;
}

.single-blog-content p {
    margin: 0 0 22px;
}

.single-blog-content h2 {
    margin: 38px 0 14px;

    color: #173d41;

    font-size: 27px;
    line-height: 1.25;
}

.single-blog-content h3 {
    margin: 30px 0 12px;

    color: #173d41;

    font-size: 22px;
    line-height: 1.3;
}

.single-blog-content ul,
.single-blog-content ol {
    margin: 0 0 25px;
    padding-left: 25px;
}

.single-blog-content li {
    margin-bottom: 8px;
}

.single-blog-content a {
    color: #70419a;
    text-decoration: underline;
}

.single-blog-content img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   TAGS
   ========================================================= */

.single-blog-tags {
    margin-top: 35px;
    padding-top: 20px;

    border-top: 1px solid #e3e1de;

    color: #687274;

    font-size: 13px;
}

.single-blog-tags span {
    margin-right: 7px;

    color: #173d41;
    font-weight: 700;
}

.single-blog-tags a {
    color: #70419a;
}


/* =========================================================
   PREVIOUS / NEXT
   ========================================================= */

.single-blog-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 40px;
    padding-top: 25px;

    border-top: 1px solid #e3e1de;
}

.single-blog-navigation a {
    color: #23852c;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.single-blog-navigation a:hover {
    color: #176b20;
}


/* =========================================================
   SINGLE PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 780px) {

    .single-blog-layout {
        grid-template-columns: 1fr;
    }

    .single-blog-title {
        font-size: 30px;
    }

    .single-blog-content {
        font-size: 15px;
    }

}


@media (max-width: 500px) {

    .single-blog-title {
        font-size: 27px;
    }

    .single-blog-featured-image {
        border-radius: 10px;
    }

    .single-blog-navigation {
        flex-direction: column;
        align-items: flex-start;
    }

}