#bd-updates {
    background: #f4f4f6;
    padding: 104px 0 120px;
    border-top: 1px solid #e2e2e8;
}

.upd-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 52px;
}

/* ── Header ── */
.upd-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 52px;
}

.upd-header-left {}

.upd-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #6c47c4;
    margin-bottom: 16px;
}

.upd-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: #6c47c4;
    border-radius: 2px;
}

.upd-heading {
    font-size: clamp(46px, 5.8vw, 62px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.025em;
    color: #0e0e12;
}

.upd-heading .accent { color: #6c47c4; }

.upd-header-right {
    flex-shrink: 0;
}

.upd-view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.03em;
    color: #6c47c4;
    text-decoration: none;
    border: 1.5px solid rgba(108, 71, 196, 0.3);
    padding: 11px 22px;
    border-radius: 100px;
    white-space: nowrap;
    transition: background 0.22s, border-color 0.22s, gap 0.22s, color 0.22s;
    background: transparent;
}

.upd-view-all:hover {
    background: #6c47c4;
    border-color: #6c47c4;
    color: #fff;
    gap: 11px;
}

.upd-view-all span { transition: transform 0.22s; }
.upd-view-all:hover span { transform: translateX(2px); }

/* ── Featured grid ── */
.upd-featured {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.upd-feat-card {
    background: #fff;
    border: 1px solid #e4e4ea;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
}

.upd-feat-card:hover {
    border-color: rgba(108, 71, 196, 0.25);
    box-shadow: 0 12px 40px rgba(108, 71, 196, 0.09), 0 2px 10px rgba(0,0,0,0.04);
    transform: translateY(-3px);
}

.upd-feat-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6c47c4, #a07be0);
    opacity: 0;
    transition: opacity 0.28s;
}

.upd-feat-card:hover::after { opacity: 1; }

.upd-feat-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.upd-feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: transform 0.55s ease, filter 0.45s;
}

.upd-feat-card:hover .upd-feat-img img {
    transform: scale(1.05);
    filter: saturate(1.05);
}

.upd-feat-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,8,20,0.28) 100%);
    pointer-events: none;
}

.upd-feat-body {
    padding: 26px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

/* ── List grid ── */
.upd-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.upd-list-card {
    background: #fff;
    border: 1px solid #e4e4ea;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
}

.upd-list-card:hover {
    border-color: rgba(108, 71, 196, 0.25);
    box-shadow: 0 12px 40px rgba(108, 71, 196, 0.09), 0 2px 10px rgba(0,0,0,0.04);
    transform: translateY(-3px);
}

.upd-list-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6c47c4, #a07be0);
    opacity: 0;
    transition: opacity 0.28s;
}

.upd-list-card:hover::after { opacity: 1; }

.upd-list-img {
    width: 100%;
    height: 168px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.upd-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: transform 0.55s ease, filter 0.45s;
}

.upd-list-card:hover .upd-list-img img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.upd-list-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

/* ── Shared card elements ── */
.upd-cat {
    display: inline-block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6c47c4;
    background: rgba(108, 71, 196, 0.08);
    padding: 3px 10px;
    border-radius: 100px;
    width: fit-content;
    border: 1px solid rgba(108, 71, 196, 0.14);
}

.upd-date {
    font-size: 11px;
    color: #bbb;
    letter-spacing: 0.03em;
    font-weight: 500;
}

/* Titles */
.upd-feat-title {
    font-size: 18px;
    font-weight: 750;
    line-height: 1.3;
    color: #0e0e12;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-underline-offset: 3px;
    text-decoration-color: transparent;
    transition: color 0.22s, text-decoration-color 0.22s;
}

.upd-feat-card:hover .upd-feat-title {
    color: #6c47c4;
    /* text-decoration: underline;
    text-decoration-color: rgba(108, 71, 196, 0.3); */
}

.upd-list-title {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.32;
    color: #0e0e12;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-underline-offset: 2px;
    text-decoration-color: transparent;
    transition: color 0.22s, text-decoration-color 0.22s;
}

.upd-list-card:hover .upd-list-title {
    color: #6c47c4;
    /* text-decoration: underline;
    text-decoration-color: rgba(108, 71, 196, 0.3); */
}

/* Descriptions */
.upd-feat-desc {
    font-size: 13.5px;
    line-height: 1.78;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-underline-offset: 2px;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.22s;
    flex: 1;
}

/* .upd-feat-card:hover .upd-feat-desc {
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.12);
} */

.upd-list-desc {
    font-size: 12.5px;
    line-height: 1.72;
    color: #777;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-underline-offset: 2px;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.22s;
    flex: 1;
}

/* .upd-list-card:hover .upd-list-desc {
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.1);
} */

/* Card footer */
.upd-card-foot {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Reading time badge */
.upd-read-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    color: #bbb;
    font-weight: 500;
}

.upd-read-time svg { flex-shrink: 0; }

.upd-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #6c47c4;
    transition: gap 0.22s;
    white-space: nowrap;
    flex-shrink: 0;
}

.upd-feat-card:hover .upd-read-more,
.upd-list-card:hover .upd-read-more { gap: 9px; }

.upd-read-more svg { flex-shrink: 0; transition: transform 0.22s; }

.upd-feat-card:hover .upd-read-more span,
.upd-list-card:hover .upd-read-more span { transform: translateX(2px); }

/* ── Responsive ── */
@media (max-width: 1060px) {
    .upd-inner { padding: 0 32px; }
    .upd-featured { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
    .upd-featured { grid-template-columns: 1fr; }
    .upd-list { grid-template-columns: 1fr 1fr; }
    #bd-updates { padding: 72px 0 88px; }
    .upd-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .upd-header-right { align-items: flex-start; }
}

@media (max-width: 600px) {
    .upd-inner { padding: 0 20px; }
    .upd-list { grid-template-columns: 1fr; gap: 14px; }
    .upd-featured { gap: 14px; margin-bottom: 14px; }
    #bd-updates { padding: 56px 0 72px; }
    .upd-feat-img { height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}

span.bdi-read-more-arrow.material-icons-round {
    font-size: 16px;
}