.blog-section-v2 {
    padding: 50px 0;
    background: #f8feff;
    position: relative;
}

.blog-section-v2 .dot {
    position: absolute;
    width: 147px;
    height: 51px;
    background-image: radial-gradient(#8d8f8f 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
    z-index: 10;
}

.blog-section-v2 .bottom-dot {
    bottom: 10px;
    left: 88%;
}

.blog-section-v2 .dot {
    position: absolute;
    width: 147px;
    height: 51px;
    background-image: radial-gradient(#8d8f8f 2px, transparent 2px);
    background-size: 12px 12px;
    opacity: 0.5;
    z-index: 10;
}

.blog-section-v2 .top-dot {
    top: 15%;
    right: 37%;
}

.blog-section-v2 .container {
    width: 90%;
}

.blog-section-v2 .section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.blog-section-v2 .sub-title {
    display: inline-block;
    font-size: 16px;
    color:var(--txt-light);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.blog-section-v2 .sub-title::before {
    content: "";
    width: 35px;
    height: 2px;
    background: #2a6df5;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.blog-section-v2 h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1d1d1d;
    font-weight: 700;
    margin: 0;
}

.blog-section-v2 .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--txt-light);
    text-decoration: none;
    white-space: nowrap;
    padding-bottom: 6px;
    transition: 0.3s;
}

.blog-section-v2 .view-all-link svg {
    width: 16px;
    height: 16px;
    transition: 0.3s;
}

.blog-section-v2 .view-all-link:hover svg {
    transform: translateX(4px);
}


/* Featured post - left, large */
.blog-section-v2  .featured-post {
    flex: 0 0 58%;
}

.blog-section-v2  .featured-post .img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 24px;
    height: 340px;
}

.blog-section-v2  .featured-post .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.blog-section-v2  .featured-post:hover .img-wrap img {
    transform: scale(1.04);
}

.blog-section-v2  .featured-post .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fff;
    color: #2a6df5;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
    letter-spacing: 0.4px;
}

.blog-section-v2  .featured-post .meta {
    font-size: 18px;
    color: #161515;
    margin-bottom: 14px;
}

.blog-section-v2 .featured-post .meta span.dot {
    margin: 0 8px;
}

.blog-section-v2 .blog_subdescrition p {
    font-size: 18px;
    color: var(--base-color);
    line-height: 1.8;
    margin: 0;
    max-width: 90%;
}

.blog-section-v2  .blog-titelmain p {
    font-size: 28px;
    line-height: 1.35;
    color: var(--txt-light);
    font-weight: 700;
    margin: 0 0 14px;
}

.blog-section-v2 .featured-post h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-section-v2 .featured-post h3 a:hover {
    color: #2a6df5;
}

.blog-section-v2 .post-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-section-v2 .list-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #d5d7d8;
}

.blog-section-v2 .list-item:first-child {
    padding-top: 0;
}

.blog-section-v2 .list-item .thumb {
    flex: 0 0 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-section-v2 .list-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.blog-section-v2  .list-item:hover .thumb img {
    transform: scale(1.1);
}

.blog-section-v2  .list-item .list-body {
    flex: 1;
    min-width: 0;
}

.blog-section-v2  .list-item .meta-small {
    font-size: 16px;
    color: var(--txt-light);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-section-v2 .list-item .meta-small .meta-date {
    color: #ab3d92;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.blog-section-v2 .list-item .meta-small .meta-date::before {
    content: "·";
    margin-right: 8px;
    color: #918e8e;
}

.blog-section-v2 .list-item p {
    font-size: 18px;
    line-height: 1.5;
    color: #1d1d1d;
    font-weight: 600;
    margin: 0;
}

.blog-section-v2 .list-item h4 a {
    color: inherit;
    text-decoration: none;
}

.list-item:hover h4 a {
    color: #2a6df5;
}
.blog-section-v2 .post-list a{
    color: #000;
}
.big_blg{
    color: #000;
}
/* Responsive */
@media (max-width: 991px) {
    .blog-section-v2 .section-head {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .blog-section-v2 .sub-title {
        padding-left: 0;
    }

    .blog-section-v2 .sub-title::before {
        display: none;
    }

    .blog-section-v2 h2 {
        font-size: 32px;
    }

   .blog-section-v2  .blog-layout {
        flex-direction: column;
        gap: 40px;
    }

   .blog-section-v2  .list-item .meta-small {
        flex-wrap: wrap;
    }

    .blog-section-v2 .featured-post {
        flex: 1;
    }


    .featured-post p {
        max-width: 100%;
    }
    .blog-section-v2 .dot {
display: none;
}
}

@media (min-width:1400px) and (max-width:1500px){
    .blog-section-v2 h2 {
    font-size: 36px;
}
.blog-section-v2 .featured-post .img-wrap {
    height: 305px;
}
.blog-section-v2 .blog-titelmain p {
    font-size: 25px;
}
.blog-section-v2 .featured-post .meta {
    font-size: 16px;
}
.blog-section-v2 .blog_subdescrition p {
    font-size: 16px;
}
}

@media (min-width:1200px) and (max-width:1399px) {
        .blog-section-v2 h2 {
    font-size: 30px;
}
.blog-section-v2 .featured-post .img-wrap {
    height: 280px;
}
.blog-section-v2 .blog-titelmain p {
    font-size: 22px;
}
.blog-section-v2 .featured-post .meta {
    font-size: 15px;
}
.blog-section-v2 .blog_subdescrition p {
    font-size: 15px;
}
.blog-section-v2 .section-head {
    margin-bottom: 30px;
}
.blog-section-v2 .list-item .meta-small {
    font-size: 14px;
}
.blog-section-v2 .list-item p {
    font-size: 15px;
}
.blog-section-v2 .dot {
    position: absolute;
    width: 147px;
    height: 39px;
    background-image: radial-gradient(#8d8f8f 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}
.blog-section-v2 .list-item .thumb {
    height: 70px;
}
}
@media (min-width:1901px) and (max-width:3000px) {
    .blog-section-v2 .sub-title {
    font-size: 20px;
}
.blog-section-v2 h2 {
    font-size: 48px;
}
.blog-section-v2 .featured-post .img-wrap {
    height: 390px;
}
.blog-section-v2 .featured-post .meta {
    font-size: 20px;
}
.blog-section-v2 .blog-titelmain p {
    font-size: 32px;
}
.blog-section-v2 .blog_subdescrition p {
    font-size: 22px;
}
.blog-section-v2 .list-item .thumb {
    height: 95px;
}
.blog-section-v2 .list-item .meta-small {
    font-size: 18px;
}
.blog-section-v2 .list-item p {
    font-size: 20px;
}
.blog-section-v2 .view-all-link {
    font-size: 20px;
}
.blog-section-v2 .featured-post .tag {
    font-size: 18px;
    padding: 11px 16px;
}
}