.xd-container {
    max-width: 980px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.image-section {
    padding: 40px 0;
}

.image-wrapper {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    background: whitesmoke;
    aspect-ratio: 2220 / 880;
    object-fit: cover;
    display: block;
}

.blog-details {
    padding: 2px 0;
    background-color: #ffffff;
}

.blog-container {
    max-width: 690px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-heading {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.35;
    color: black;
    margin-bottom: 12px;
}

.blog-meta {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
    margin-bottom: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 22px;
    font-weight: 500;
}

.blog-quote {
    background-color: #f9fafb;
    padding: 24px 28px;
    border-left: 4px solid #f59e0b;
    margin: 20px 0;
    border-radius: 12px;
}

.blog-quote p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 10px;
    font-weight: 500;

}

.blog-quote span {
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.05em;
}

.blog-subheading {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #2d323a;
    margin: 40px 0 16px;
}

.blog-section-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    color: #2d323a;
    margin: 32px 0 12px;
}

/* TAGS */
.blog-tags {
    margin: 48px 0 56px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.tag-label {
    font-size: 22px;
    color: black;
    font-weight: 600;
}

.tag {
    background: #f3f4f6;
    color: black;
    font-weight: 500;
    font-size: 16px;
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
}

.tag:hover {
    background: #e5e7eb;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 10px;
}

.article-prev {
    max-width: 48%;
    text-align: start;
}

.article-next {
    max-width: 48%;
    text-align: end;
}

.nav-label {
    font-size: 16px;
    color: #888f9b;
    display: block;
    margin-bottom: 6px;
}

.nav-title {
    font-size: 16px;
    font-weight: 700;
    color: black;
    text-decoration: none;
    line-height: 1.5;
}

.read-blog-section {
    padding: 40px 0;
    background: #ffffff;
}

.read-blog-container {
    max-width: 1290px;
    margin: 0 auto;
    background: #f9fafb;
    border-radius: 14px;
    padding: 40px 0;
}

.read-blog-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.read-blog-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 28px;
}

.read-blog-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 26px;
    border-bottom: 1px solid #e5e7eb;
}

.read-blog-item:last-child {
    margin-bottom: 0;
}

.read-blog-thumb {
    width: 110px;
    height: 110px;
    background: #e5e7eb;
    border-radius: 16px;
    flex-shrink: 0;
}

.read-blog-meta {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-blog-meta .dot {
    font-size: 18px;
}

/* TEXT */
.read-blog-text h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    margin-bottom: 6px;
}

.read-blog-text p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    color: #6b7280;
}

@media (max-width: 576px) {
    .read-blog-container {
        margin: 0 16px;
    }

    .read-blog-thumb {
        width: 72px;
        height: 56px;
    }

}

@media (max-width: 576px) {
    .blog-tags {
        justify-content: center;
        /* centers wrapped rows */
    }
}

@media (max-width: 768px) {
    .article-nav {
        flex-direction: column;
    }

    .article-prev,
    .article-next {
        max-width: 100%;
        text-align: center;
        /* center text */

    }
}