.blog-read {
    padding: 120px 0 80px;
    background: #fff;
}

.blog-read__container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
}

/* removed blog-read header styles */

.blog-read__hero {
    margin: 28px 0 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(16, 24, 40, .12);
}

.blog-read__hero-img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-read__content {
    font-size: 18px;
    line-height: 1.8;
    color: #1f1f1f;
}

/* Figma: Categories + Featured + Latest Posts */
.news-categories {
    margin: 18px 0 20px;
}

.news-categories__title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 8px;
}

.news-categories__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 16px;
}

.news-chip {
    font-size: 14px;
    color: #666666;
    font-weight: 500;
}

.news-chip__count {
    color: #b1b1b1;
    margin-left: 3px;
}

.news-chip+.news-chip {
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid #e6e6e6;
}

@media (max-width: 600px) {
    .news-categories__bar {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        padding-bottom: 6px;
    }

    .news-categories__bar::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .news-chip {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .news-chip+.news-chip {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }
}

/* Wider mobile/tablet: keep horizontal slider too */
@media (max-width: 768px) {
    .news-categories__bar {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        padding-bottom: 6px;
    }

    .news-categories__bar::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .news-chip {
        flex: 0 0 auto;
        scroll-snap-align: start;
        padding-left: 10px;
        padding-right: 10px;
    }

    .news-chip+.news-chip {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 365px;
    gap: 40px;
    align-items: start;
}

aside.news-sidebar {
    position: sticky;
    top: 70px;
}

.news-title {
    font-size: 30px;
    line-height: 1.485;
    color: #333333;
    font-weight: 700;
    margin-bottom: 40px;
}

.news-subtitle {
    font-size: 20px;
    line-height: 1.4;
    color: #333333;
    font-weight: 600;
    margin: 6px 0 18px;
}

.news-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(16, 24, 40, .12);
}

.news-hero__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 974 / 600;
}

.news-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.5) 100%);
}

.news-video-play {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.news-video-play svg {
    filter: drop-shadow(0 8px 18px rgba(29, 218, 169, .45));
}

.news-sidebar__title {
    font-size: 24px;
    color: #333333;
    font-weight: 600;
    margin: 0 0 12px;
}

.news-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 12px 16px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #eeeeee;
}

.news-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.news-thumb {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    object-fit: cover;
    flex: 0 0 80px;
}

.news-item__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #333333;
    margin: 0 0 6px;
    transition: color 0.3s ease;
}

.news-item__date {
    font-size: 14px;
    color: #b1b1b1;
    margin: 0;
}

/* Make sidebar item title non-underlined and add hover color */
.news-item__meta {
    text-decoration: none;
}

.news-item__meta:hover .news-item__title {
    color: #00b894;
}

/* Article body */
.br-body {
    max-width: 1050px;
    margin: 20px auto 20px;
    color: #666666;
}

.br-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 12px;
}

.br-author__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.br-author__name {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #333333;
    margin-bottom: 0px !important;
}

.br-author__date {
    margin: 2px 0 0;
    font-size: 20px;
    color: #999999;
    margin-bottom: 0px !important;
}

.br-author__share {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #00b894;
    border: 1.5px solid #00b894;
    border-radius: 12px;
    background: transparent;
    /* box-shadow: 0 4px 18px rgba(0, 139, 120, 0.15); */
    cursor: pointer;
    white-space: nowrap;
}

/* .br-author__share:hover {
    filter: brightness(0.98);
} */

@media (max-width: 600px) {
    .br-author__share {
        font-size: 16px;
        padding: 8px 16px;
        border-radius: 10px;
    }
}

.br-body p {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 33px;
    text-align: justify;
}

/* Quote block */
.br-quote {
    display: grid;
    grid-template-columns: 5px 1fr;
    gap: 16px;
    align-items: start;
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.br-quote__bar {
    background: #00b894;
    border-radius: 4px;
    height: 100%;
}

.br-quote__text {
    color: #666666;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 6px;
}

.br-quote__cite {
    color: #333333;
    font-weight: 600;
    margin: 0;
    font-size: 14px;
}

/* Center figure */
.br-figure {
    margin: 18px 0 12px;
    display: flex;
    justify-content: center;
}

.br-figure__img {
    width: 100%;
    max-width: 816px;
    border-radius: 16px;
    display: block;
}

/* What is Diabetes */
.br-diabetes {
    max-width: 1050px;
    margin: 20px auto 20px;
}

.br-diabetes__title {
    font-size: 24px;
    color: #333333;
    font-weight: 800;
    margin: 0 0 14px;
}

.br-diabetes__card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px;
}

.br-diabetes__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 8px;
}

.br-diabetes__row+.br-diabetes__row {
    margin-top: 12px;
}

.br-chip {
    display: block;
    background: rgba(0, 173, 139, 0.10);
    color: #333333;
    border: 0;
    border-radius: 12px;
    font-weight: 600;
    padding: 14px 16px;
    font-size: 16px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.br-diabetes__desc {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

/* Common Symptoms */
.br-symptoms {
    max-width: 1050px;
    margin: 20px auto 20px;
}

.br-symptoms__title {
    font-size: 24px;
    color: #333333;
    font-weight: 800;
    margin: 0 0 14px;
}

.br-symptoms__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 72px;
}

.br-symptom {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 1;
}

.br-symptom__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e6eef2;
    object-fit: contain;
    padding: 10px;
    box-shadow: 0 16px 30px rgba(0, 139, 213, 0.15);
}

.br-symptom__text {
    color: #666666;
    font-size: 18px;
}

/* Comment form */
.br-comment {
    margin: 140px 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.br-comment__title {
    font-size: 32px;
    color: #333333;
    font-weight: 800;
    margin: 0 0 18px;
}

.br-comment__form {
    width: 100%;
    max-width: 974px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 50px 70px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.br-comment::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 110px;
    left: 45%;
    top: -150px;
    background: url("../../images/blog-read/arrow-comment.svg") no-repeat center / contain;
    transform: scaleX(-1);
    display: block;
}

.br-comment__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.br-field {
    display: grid;
    gap: 6px;
}

.br-field--full {
    grid-column: 1 / -1;
    padding-top: 10px;
}

.br-field__label {
    color: #020817;
    font-size: 16px;
    font-weight: 600;
}


.br-input,
.br-textarea {
    width: 100%;
    background: #eef8f8;
    border: .3px solid #8dd2d2;
    border-radius: 6px;
    padding: 10px 10px !important;
    font-size: 14px;
    color: #333;
    outline: none;
}

.br-textarea {
    resize: vertical;
    min-width: 600px;
}

.br-comment__actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.br-btn {
    background: #00b894 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 6px !important;
    padding: 10px 30px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.br-btn:hover {
    filter: brightness(0.95);
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
	aside.news-sidebar {
		position: unset;
		top: 70px;
	}
}

/* Related Articles (node 44:6) */
.br-related {
    max-width: 1200px;
    margin: 36px auto 80px;
}

.br-related__title {
    font-size: 28px;
    color: #333333;
    font-weight: 800;
    margin: 0 0 18px;
}

.br-related__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 33px 30px;
}

.br-related__card {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Stretched link to make the whole card clickable */
.br-related__card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    color: transparent;
    text-indent: -9999px;
}

.br-related__media {
    margin: 0 0 12px;
    border-radius: 12px;
    overflow: hidden;
}

.br-related__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.br-related__meta {
    display: grid;
    grid-template-columns: 62px 1fr;
    column-gap: 18px;
    align-items: start;
}

.date-badge {
    width: 62px;
    height: 71px;
    border: 2px solid #00b894;
    border-radius: 4px;
    display: grid;
    align-content: center;
    justify-items: center;
    line-height: 1;
}

.date-badge__day {
    color: #00b894;
    font-weight: 800;
    font-size: 30px;
    margin-top: 6px;
}

.date-badge__mon {
    color: #00b894;
    font-weight: 600;
    font-size: 14px;
    margin-top: 2px;
}

.br-related__content {
    margin-top: 12px;
}

.br-related__heading {
    font-size: 20px;
    color: #333333;
    font-weight: 600;
    margin: 0 0 12px;
}

.br-related__divider {
    display: block;
    width: 34px;
    height: 2px;
    background: #333333;
    margin: 0 0 12px;
}

.br-related__excerpt {
    color: #666666;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.br-related__line {
    color: #666666;
    font-size: 16px;
    margin: 0 0 6px;
}

.br-related__link {
    position: relative;
    z-index: 2;
    color: #428bdc;
    text-decoration: none;
}

.br-related__link:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .br-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .br-related {
        padding-left: 24px;
        padding-right: 24px;

    }

    .br-related__grid {
        display: flex;
        gap: 30px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
        touch-action: pan-x;
        padding: 8px 0;
    }

    .br-related__grid::-webkit-scrollbar {
        display: none;
        height: 0;
        width: 0;
    }

    .br-related__card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 0;
    }

    .br-related__img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .blog-read {
        padding: 90px 0 60px;
    }

    .blog-read__title {
        font-size: 30px;
        line-height: 1.2;
    }

    .br-diabetes__row {
        grid-template-columns: 1fr;
    }

    .br-symptoms__grid {
        grid-template-columns: 1fr;
        gap: 18px 24px;
    }

    .br-comment {
        margin-top: 50px;
    }

    .br-comment__row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .br-comment::before {
        display: none;
    }

    .br-comment__form {
        padding: 16px;
    }

    .br-author__name {
        font-size: 16px !important;
    }

    .br-author__date {
        font-size: 12px !important;
    }

    .br-textarea {
        min-width: 250px !important;
    }

    .br-field--full {
        padding-top: 10px;
    }
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}