
/* ==========================================================================
   FAMECLOCK UPDATES — LIGHT GLASS / PREMIUM SURFACE
   ========================================================================== */

:root{
  --updates-bg-a:#f8fbff;
  --updates-bg-b:#eef4fb;
  --updates-surface:rgba(255,255,255,.84);
  --updates-surface-strong:#ffffff;
  --updates-line:rgba(189,205,224,.75);
  --updates-line-strong:#cfdbea;
  --updates-text:#15253c;
  --updates-text-soft:#61748b;
  --updates-text-faint:#8fa0b6;
  --updates-accent:#3f6fff;
  --updates-accent-strong:#2f5ff0;
  --updates-accent-soft:rgba(63,111,255,.10);
  --updates-info-soft:rgba(63,111,255,.12);
  --updates-success-soft:rgba(34,181,115,.12);
  --updates-alert-soft:rgba(229,169,61,.14);
  --updates-shadow-sm:0 16px 40px rgba(15,23,42,.06);
  --updates-shadow-md:0 24px 58px rgba(15,23,42,.10);
  --updates-radius-lg:28px;
  --updates-radius-md:22px;
  --updates-radius-sm:16px;
}

body{
  background:
    radial-gradient(circle at 8% 12%, rgba(79,124,255,.12), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(139,92,246,.08), transparent 22%),
    linear-gradient(180deg,var(--updates-bg-a) 0%, var(--updates-bg-b) 48%, #edf3f9 100%);
  color:var(--updates-text);
  padding-top:118px;
}

.updates-page{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  padding:30px 0 84px;
}

.updates-hero{
  margin:0 0 26px;
}

.updates-hero__inner{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  padding:34px 34px 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,251,255,.88)),
    linear-gradient(135deg, rgba(63,111,255,.06), rgba(139,92,246,.04));
  border:1px solid rgba(255,255,255,.92);
  box-shadow:
    0 30px 80px rgba(15,23,42,.08),
    0 12px 34px rgba(63,111,255,.08),
    inset 0 1px 0 rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.updates-hero__inner::before,
.updates-hero__inner::after{
  content:"";
  position:absolute;
  pointer-events:none;
  border-radius:999px;
  filter:blur(10px);
}

.updates-hero__inner::before{
  width:220px;
  height:220px;
  top:-84px;
  right:-54px;
  background:radial-gradient(circle, rgba(63,111,255,.18) 0%, rgba(63,111,255,0) 68%);
}

.updates-hero__inner::after{
  width:180px;
  height:180px;
  bottom:-70px;
  left:-26px;
  background:radial-gradient(circle, rgba(139,92,246,.15) 0%, rgba(139,92,246,0) 70%);
}

.updates-kicker{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:var(--updates-accent-soft);
  border:1px solid rgba(63,111,255,.12);
  color:var(--updates-accent-strong);
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.updates-hero h1{
  position:relative;
  z-index:1;
  margin:0 0 12px;
  color:var(--updates-text);
  font-size:clamp(2rem, 4.4vw, 3.8rem);
  line-height:.98;
  letter-spacing:-.04em;
  max-width:700px;
}

.updates-hero p{
  position:relative;
  z-index:1;
  margin:0;
  max-width:700px;
  color:var(--updates-text-soft);
  font-size:1.02rem;
  line-height:1.72;
}

.updates-hero__actions{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.updates-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:16px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:-.01em;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.updates-btn:hover{
  transform:translateY(-1px);
}

.updates-btn--primary{
  color:#fff;
  background:linear-gradient(180deg, #4f7cff 0%, #3965e8 100%);
  border:1px solid rgba(57,101,232,.34);
  box-shadow:0 16px 34px rgba(57,101,232,.26);
}

.updates-btn--ghost{
  color:var(--updates-text);
  background:rgba(255,255,255,.66);
  border:1px solid var(--updates-line);
  box-shadow:0 10px 26px rgba(15,23,42,.05);
}

.updates-btn--ghost:hover{
  border-color:var(--updates-line-strong);
  background:rgba(255,255,255,.82);
}

.updates-section{
  margin-top:26px;
}

.updates-section__header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.updates-section__header h2{
  margin:0;
  color:var(--updates-text);
  font-size:1.18rem;
  font-weight:900;
  letter-spacing:-.02em;
  text-transform:none;
}

.updates-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}

.update-card,
.updates-empty{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  padding:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(249,251,255,.82));
  border:1px solid rgba(255,255,255,.95);
  box-shadow:
    0 20px 50px rgba(15,23,42,.06),
    0 8px 24px rgba(63,111,255,.05),
    inset 0 1px 0 rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.update-card::before,
.updates-empty::before{
  content:"";
  position:absolute;
  inset:-1px auto auto -1px;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(63,111,255,.06), transparent 38%, transparent);
  pointer-events:none;
}

.update-card--archive{
  opacity:.94;
}

.update-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.update-card__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  font-size:.74rem;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
  color:var(--updates-accent-strong);
  background:var(--updates-info-soft);
  border:1px solid rgba(63,111,255,.08);
}

.update-card__date{
  color:var(--updates-text-faint);
  font-size:.84rem;
  font-weight:700;
}

.update-card__message{
  color:var(--updates-text);
  line-height:1.72;
  font-size:.98rem;
}

.update-card--success .update-card__badge{
  background:var(--updates-success-soft);
  color:#1f8d5c;
  border-color:rgba(34,181,115,.14);
}

.update-card--alert .update-card__badge{
  background:var(--updates-alert-soft);
  color:#b67a19;
  border-color:rgba(229,169,61,.16);
}

.update-card--info .update-card__badge{
  background:var(--updates-info-soft);
  color:var(--updates-accent-strong);
}

.updates-empty{
  padding:28px 22px;
  text-align:center;
}

.updates-empty h3{
  margin:0 0 8px;
  color:var(--updates-text);
  font-size:1.08rem;
  font-weight:900;
  letter-spacing:-.02em;
}

.updates-empty p{
  margin:0;
  color:var(--updates-text-soft);
  line-height:1.68;
}



.updates-section__intro{
  margin:8px 0 0;
  color:var(--updates-text-soft);
  font-size:.98rem;
  line-height:1.65;
}

.updates-section--week{
  margin-top:0;
}

.updates-week-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.updates-week-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:238px;
  padding:24px;
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,255,.9)),
    linear-gradient(135deg, rgba(63,111,255,.05), rgba(139,92,246,.03));
  border:1px solid rgba(255,255,255,.9);
  box-shadow:var(--updates-shadow-sm);
}

.updates-week-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.72);
}

.updates-week-card--update{
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,251,255,.92)),
    linear-gradient(135deg, rgba(63,111,255,.06), rgba(63,111,255,.02));
}

.updates-week-card--spotlight{
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(249,250,255,.92)),
    linear-gradient(135deg, rgba(139,92,246,.08), rgba(63,111,255,.03));
}

.updates-week-card--collection{
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(251,253,255,.92)),
    linear-gradient(135deg, rgba(34,181,115,.08), rgba(63,111,255,.03));
}

.updates-week-card__label{
  display:inline-flex;
  align-self:flex-start;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(189,205,224,.72);
  color:var(--updates-text-faint);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.updates-week-card h3{
  margin:0;
  color:var(--updates-text);
  font-size:1.22rem;
  line-height:1.3;
}

.updates-week-card p{
  margin:0;
  color:var(--updates-text-soft);
  font-size:.98rem;
  line-height:1.7;
  display:-webkit-box;
  -webkit-line-clamp:4;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.updates-week-card__footer{
  margin-top:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.updates-week-card__footer time{
  color:var(--updates-text-faint);
  font-size:.86rem;
  font-weight:700;
}

.updates-week-card__footer a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:var(--updates-accent-soft);
  border:1px solid rgba(63,111,255,.14);
  color:var(--updates-accent-strong);
  font-size:.9rem;
  font-weight:800;
  text-decoration:none;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.updates-week-card__footer a:hover{
  transform:translateY(-1px);
  background:rgba(63,111,255,.14);
  border-color:rgba(63,111,255,.24);
}

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


  .updates-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px){
  .updates-week-card{
    min-height:0;
    padding:20px;
  }

  .updates-week-card__footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .updates-week-card__footer a{
    width:100%;
  }


  body{
    padding-top:104px;
  }

  .updates-page{
    width:min(100% - 20px, 100%);
    padding:18px 0 62px;
  }

  .updates-hero__inner{
    border-radius:24px;
    padding:24px 18px 22px;
  }

  .updates-hero__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .updates-btn{
    width:100%;
  }

  .updates-grid{
    grid-template-columns:1fr;
  }

  .update-card,
  .updates-empty{
    border-radius:20px;
    padding:18px;
  }

  .update-card__top{
    flex-direction:column;
    align-items:flex-start;
  }
}


.updates-section--featured{
  margin-top:24px;
}

.update-featured{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  padding:24px 24px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,251,255,.86));
  border:1px solid rgba(255,255,255,.96);
  box-shadow:
    0 24px 54px rgba(15,23,42,.07),
    0 10px 26px rgba(63,111,255,.06),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.update-featured::before{
  content:"";
  position:absolute;
  inset:-1px auto auto -1px;
  width:100%;
  height:100%;
  background:linear-gradient(135deg, rgba(63,111,255,.08), transparent 42%, transparent);
  pointer-events:none;
}

.update-featured__meta{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.update-featured__message{
  position:relative;
  z-index:1;
  color:var(--updates-text);
  font-size:1.04rem;
  line-height:1.82;
  font-weight:700;
  max-width:920px;
}

.updates-section__header--filters{
  align-items:flex-start;
}

.updates-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:flex-end;
}

.updates-filter{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  text-decoration:none;
  color:var(--updates-text-soft);
  background:rgba(255,255,255,.66);
  border:1px solid var(--updates-line);
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  font-size:.88rem;
  font-weight:800;
  letter-spacing:-.01em;
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.updates-filter:hover{
  transform:translateY(-1px);
  color:var(--updates-text);
  border-color:var(--updates-line-strong);
  background:rgba(255,255,255,.84);
}

.updates-filter.is-active{
  color:var(--updates-accent-strong);
  background:var(--updates-accent-soft);
  border-color:rgba(63,111,255,.18);
  box-shadow:0 12px 24px rgba(63,111,255,.10);
}

@media (max-width: 860px){
  .updates-section__header--filters{
    flex-direction:column;
    align-items:flex-start;
  }

  .updates-filters{
    justify-content:flex-start;
  }

  .update-featured{
    padding:20px 18px 18px;
  }

  .update-featured__meta{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* ==========================================================================
   STEP 23 — GLANCE + EXPLORE
   ========================================================================== */

.updates-section--glance{
  margin-top:0;
}

.updates-glance-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}

.updates-glance-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  padding:22px 22px 18px;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(246,250,255,.88));
  border:1px solid rgba(202,215,233,.82);
  box-shadow:var(--updates-shadow-sm);
}

.updates-glance-card::after{
  content:"";
  position:absolute;
  inset:auto -18px -36px auto;
  width:110px;
  height:110px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(63,111,255,.11) 0%, rgba(63,111,255,0) 72%);
  pointer-events:none;
}

.updates-glance-card__count{
  position:relative;
  z-index:1;
  color:var(--updates-text);
  font-size:clamp(1.7rem, 2.8vw, 2.3rem);
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
  margin-bottom:10px;
}

.updates-glance-card__label{
  position:relative;
  z-index:1;
  color:var(--updates-text-soft);
  font-size:.92rem;
  line-height:1.45;
  font-weight:700;
}

.updates-section--explore{
  margin-top:26px;
}

.updates-explore-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

.updates-explore-card{
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height:200px;
  padding:22px;
  border-radius:26px;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(247,250,255,.88));
  border:1px solid rgba(202,215,233,.82);
  box-shadow:var(--updates-shadow-sm);
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.updates-explore-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--updates-shadow-md);
  border-color:rgba(142,167,206,.9);
}

.updates-explore-card::before{
  content:"";
  position:absolute;
  inset:auto -18px -34px auto;
  width:140px;
  height:140px;
  border-radius:999px;
  pointer-events:none;
  opacity:.9;
}

.updates-explore-card--dashboard::before{
  background:radial-gradient(circle, rgba(63,111,255,.16) 0%, rgba(63,111,255,0) 72%);
}

.updates-explore-card--market::before{
  background:radial-gradient(circle, rgba(34,181,115,.14) 0%, rgba(34,181,115,0) 72%);
}

.updates-explore-card--grid::before{
  background:radial-gradient(circle, rgba(139,92,246,.14) 0%, rgba(139,92,246,0) 72%);
}

.updates-explore-card__eyebrow{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(63,111,255,.08);
  border:1px solid rgba(63,111,255,.10);
  color:var(--updates-accent-strong);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.updates-explore-card strong{
  position:relative;
  z-index:1;
  color:var(--updates-text);
  font-size:1.18rem;
  line-height:1.25;
  font-weight:900;
  letter-spacing:-.02em;
}

.updates-explore-card p{
  position:relative;
  z-index:1;
  margin:0;
  color:var(--updates-text-soft);
  font-size:.95rem;
  line-height:1.6;
  max-width:30ch;
}

@media (max-width: 1080px){
  .updates-glance-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .updates-explore-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .updates-week-card{
    min-height:0;
    padding:20px;
  }

  .updates-week-card__footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .updates-week-card__footer a{
    width:100%;
  }


  .updates-glance-grid{
    grid-template-columns:1fr;
  }

  .updates-glance-card,
  .updates-explore-card{
    border-radius:22px;
  }
}


/* ==========================================================================
   SEARCH + RESULTS META
   ========================================================================== */

.updates-section__header--filters{
  align-items:flex-start;
  gap:18px;
}

.updates-section__header-main{
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1 1 520px;
  min-width:260px;
}

.updates-search{
  display:flex;
  align-items:center;
  gap:10px;
  flex:1 1 340px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.updates-search__input{
  flex:1 1 240px;
  min-width:220px;
  min-height:48px;
  padding:0 16px;
  border-radius:16px;
  border:1px solid rgba(189,205,224,.9);
  background:rgba(255,255,255,.86);
  color:var(--updates-text);
  font:inherit;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.updates-search__input:focus{
  outline:none;
  border-color:rgba(63,111,255,.5);
  box-shadow:0 0 0 4px rgba(63,111,255,.12);
}

.updates-search__button,
.updates-search__clear{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 16px;
  border-radius:16px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
}

.updates-search__button{
  border:1px solid rgba(57,101,232,.34);
  background:linear-gradient(180deg, #4f7cff 0%, #3965e8 100%);
  color:#fff;
  box-shadow:0 14px 28px rgba(57,101,232,.18);
  cursor:pointer;
}

.updates-search__clear{
  border:1px solid rgba(189,205,224,.95);
  background:rgba(255,255,255,.7);
  color:var(--updates-text);
}

.updates-results-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin:8px 0 0;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(189,205,224,.7);
  background:rgba(255,255,255,.72);
}

.updates-results-meta__text{
  color:var(--updates-text-soft);
  font-size:.96rem;
}

.updates-results-meta__text strong{
  color:var(--updates-text);
  font-weight:800;
}

.updates-results-meta__count{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:var(--updates-accent-soft);
  border:1px solid rgba(63,111,255,.12);
  color:var(--updates-accent-strong);
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.02em;
}

@media (max-width: 900px){
  .updates-search{
    justify-content:flex-start;
  }
}

@media (max-width: 640px){
  .updates-search{
    width:100%;
  }

  .updates-search__input,
  .updates-search__button,
  .updates-search__clear{
    width:100%;
  }

  .updates-results-meta{
    align-items:flex-start;
  }
}


/* ==========================================================================
   NEXT / WHAT'S COMING
   ========================================================================== */

.updates-section--next{
  margin-top:30px;
}

.updates-next-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.updates-next-card{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:12px;
  min-height:220px;
  padding:24px;
  border-radius:24px;
  text-decoration:none;
  color:var(--updates-text);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,250,255,.86)),
    linear-gradient(135deg, rgba(63,111,255,.04), rgba(139,92,246,.03));
  border:1px solid rgba(255,255,255,.92);
  box-shadow:0 22px 54px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.74);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.updates-next-card:hover{
  transform:translateY(-3px);
  box-shadow:0 28px 64px rgba(15,23,42,.11), inset 0 1px 0 rgba(255,255,255,.82);
  border-color:rgba(189,205,224,.92);
}

.updates-next-card__label{
  display:inline-flex;
  align-self:flex-start;
  padding:7px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.02em;
  background:rgba(63,111,255,.10);
  color:var(--updates-accent-strong);
}

.updates-next-card strong{
  font-size:1.12rem;
  line-height:1.35;
}

.updates-next-card p{
  margin:0;
  color:var(--updates-text-soft);
  line-height:1.65;
}

.updates-next-card__cta{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:700;
  color:var(--updates-accent-strong);
}

.updates-next-card--dashboard .updates-next-card__label{
  background:rgba(34,181,115,.11);
  color:#168456;
}

.updates-next-card--updates .updates-next-card__label{
  background:rgba(139,92,246,.10);
  color:#7550d7;
}

@media (max-width: 980px){
  .updates-next-grid{
    grid-template-columns:1fr;
  }
}


.updates-archive-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.updates-archive-toggle {
    appearance: none;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.88);
    color: #0f172a;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.updates-archive-toggle:hover,
.updates-archive-toggle:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
    border-color: rgba(99, 102, 241, 0.28);
    outline: none;
}

.update-card.is-archived-hidden[hidden] {
    display: none !important;
}
