.blog-banner{
    padding-block: 80px;
    padding-top: 155px;
    text-align: center;
    h1{
        font-size: 58px;
        font-weight: 700;
        line-height: 1.2;
    }
}
.blog-item {
    overflow: hidden;
    box-shadow: 0px 2px 20px #d7dfe2;
    background: white;
    border-radius: 0.5rem;
    position: relative;
    width: 100%;
    margin: 1rem;
    transition: 250ms all ease-in-out;
    cursor: pointer;
    .blog-img{
        overflow: hidden;
        height: 14rem;
        width: 100%;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all .5s;
        }
    }
  }

.blog-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 40px #d7dfe2;
    .blog-img{
        img{
            transform: scale(1.05);
        }
    }
    .blog-title{
        color: var(--color-green);
    }
}
  .category-tag {
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    background: var(--color-green);
    padding: 0.5rem 1.3rem 0.5rem 1rem;
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
    top: 1rem;
    border-radius: 0 2rem 2rem 0;
  }

  .blog-title {
    color: #3A3A3A;
    font-family: Barlow;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: all .5s;
  }

  .blog-description {
    color: #616b74;
    font-size: 0.9rem;
  }
  .blog-details{
    padding-top: 155px;
    .category-tag{
        position: relative;
        display: inline-block;
        margin-bottom: 20px;
        top: unset;
        margin-top: 20px;
    }
    .details-content{
        padding: 10px;
        border-radius: 10px;
        padding-bottom: 30px;
        img{
            margin-bottom: 20px;
            border-radius: 10px;
        }
        ::marker {
            color: var(--color-green);
        }
    }
  }
  .sidebar-service{
    background-color: #02d38611;
    padding: 10px; 
    margin-bottom: 20px;
  }
  .recent-post-list{
    padding: 0;
    list-style: none;
    margin: 0
  }
  .heading-tag {
    background-color: var(--color-green);
    font-size: 24px;
    color: rgb(255, 255, 255);
    font-weight: 500;
    font-style: italic;
    display: inline-block;
    padding-bottom: 8px;
    padding-top: 4px;
    padding-inline: 15px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}
.recent-post-list img{
    width: 85px;
    height: 58px;
    object-fit: cover;
}
.recent-post-list li a{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgb(26, 26, 26);
    font-weight: bold;     
}
.recent-post-list li{
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.recent-post-list li:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.recent-post-list li:hover a{
    color: var(--color-green);
}

.custom-comparison-table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1.5em;
    font-size: 1.05em;
}
.custom-comparison-table th,
.custom-comparison-table td {
    border: 1px solid #888;
    padding: 10px 18px;
    text-align: left;
}
.custom-comparison-table th {
    background: #f5f5f5;
    font-weight: bold;
}
.custom-comparison-table td:first-child {
    font-weight: bold;
    width: 180px;
    background: #fafafd;
}
.custom-comparison-table tr:hover td {
    background: #f1f9ff;
    transition: background 0.2s;
}

@media screen and (max-width: 768px) {
    .blog-item {
        width: 91.5%;
    }
    .blog-banner {
        padding-block: 30px;
        padding-top: 105px;
        text-align: center;
        h1{
            font-size: 38px;
        }
    }
    .blog-details {
        padding-top: 120px;
    }
}
@media screen and (max-width: 576px) {
    .blog-details {
        padding: 10px;
        padding-top: 90px;
        h1{
            font-size: 28px;
            margin: 0;
        }
        .details-content{
            padding: 0;
            margin-bottom: 30px;
        }
        h2{
            font-size: 24px;
        }
        .list {
            font-size: 14px;
            padding-left: 20px;
        }
    }
}
