.blog-hero {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 155px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 10%, rgba(83, 45, 191, .22), transparent 42%),
    linear-gradient(155deg, #03070d 0%, #07101d 55%, #08051a 100%);
}
.blog-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(118, 97, 255, .5), transparent); }
.blog-aurora { position: absolute; width: 480px; height: 480px; border-radius: 50%; filter: blur(100px); opacity: .22; }
.blog-aurora-one { top: -210px; left: -100px; background: #176eff; }
.blog-aurora-two { right: -160px; bottom: -260px; background: #a343ff; }
.blog-hero-inner { position: relative; z-index: 2; text-align: center; }
.blog-hero .blog-breadcrumb { justify-content: center; margin-bottom: 60px; }
.blog-hero h1 { max-width: 900px; margin: 20px auto 18px; font: 720 clamp(48px, 7.2vw, 94px)/.95 var(--font-display); letter-spacing: -.065em; }
.blog-hero h1::after { content: ""; display: block; width: 90px; height: 3px; margin: 30px auto 0; background: linear-gradient(90deg, #287dff, #ae4cff); border-radius: 3px; box-shadow: 0 0 24px #6f4fff; }
.blog-hero p { max-width: 690px; margin: 0 auto; color: var(--text-soft); font-size: 17px; line-height: 1.75; }
.blog-breadcrumb { display: flex; align-items: center; gap: 10px; color: var(--text-faint); font-size: 11px; }
.blog-breadcrumb a { transition: color .2s ease; }.blog-breadcrumb a:hover { color: var(--accent-bright); }
.blog-breadcrumb strong { max-width: 440px; overflow: hidden; color: var(--text-soft); font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }

.blog-catalog { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); }
.blog-filter-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(300px, 1.7fr) minmax(170px, .65fr) minmax(170px, .65fr) auto;
  align-items: end;
  gap: 12px;
  margin-top: -125px;
  padding: 20px;
  background: rgba(8, 15, 28, .86);
  border: 1px solid rgba(121, 118, 240, .23);
  border-radius: 22px;
  box-shadow: 0 28px 85px rgba(0, 0, 0, .38);
  backdrop-filter: blur(25px);
}
html[data-theme="light"] .blog-filter-panel { background: rgba(255, 255, 255, .88); }
.blog-filter-panel label { display: flex; flex-direction: column; gap: 8px; min-width: 0; color: var(--text-faint); font-size: 10px; font-weight: 650; }
.blog-filter-panel input, .blog-filter-panel select {
  width: 100%; height: 50px; padding: 0 14px; color: var(--text); background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 12px; outline: none; font-size: 12px;
}
.blog-filter-panel input:focus, .blog-filter-panel select:focus { border-color: rgba(91, 126, 255, .65); box-shadow: 0 0 0 3px rgba(83, 90, 255, .12); }
.blog-search { position: relative; }.blog-search svg { position: absolute; z-index: 1; left: 15px; bottom: 15px; width: 20px; height: 20px; color: #8a7cff; }
.blog-search input { padding-left: 47px; }
.blog-filter-panel .button { min-height: 50px; border: 0; white-space: nowrap; }
.blog-result-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin: 65px 0 28px; }
.blog-result-heading h2 { margin: 9px 0 0; font: 600 clamp(25px, 3vw, 38px)/1.15 var(--font-display); letter-spacing: -.04em; }
.blog-result-heading h2 strong { color: #9586ff; }.blog-filter-clear { padding: 0; color: var(--accent-bright); background: transparent; border: 0; font-size: 11px; font-weight: 650; cursor: pointer; }.blog-filter-clear:hover { text-decoration: underline; }

.blog-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.blog-card { min-width: 0; transition: opacity .35s ease, transform .35s ease; }
.blog-card.is-entering { opacity: 0; transform: translateY(22px); }
.blog-card-link {
  position: relative;
  display: flex;
  min-height: 485px;
  height: 100%;
  flex-direction: column;
  padding: 23px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(15, 25, 42, .92), rgba(7, 12, 22, .95));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .14);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, box-shadow .35s ease;
}
html[data-theme="light"] .blog-card-link { background: linear-gradient(145deg, #fff, #f5f8fd); }
.blog-card-link::before { content: ""; position: absolute; inset: 0; opacity: 0; background: radial-gradient(circle at 50% 0%, rgba(104, 68, 255, .16), transparent 50%); transition: opacity .35s ease; }
.blog-card:hover { z-index: 2; }.blog-card:hover .blog-card-link { transform: translateY(-10px) scale(1.018); border-color: rgba(118, 102, 255, .45); box-shadow: 0 30px 80px rgba(22, 11, 61, .4), 0 0 35px rgba(72, 90, 255, .1); }
.blog-card:hover .blog-card-link::before { opacity: 1; }
.blog-card-cover { position: relative; z-index: 1; display: grid; place-items: center; width: 94px; height: 94px; margin: 0 auto 25px; overflow: hidden; border: 1px solid rgba(119, 105, 255, .28); border-radius: 50%; background: radial-gradient(circle, rgba(98, 68, 255, .18), rgba(35, 65, 110, .08)); box-shadow: 0 0 0 9px rgba(115, 80, 255, .035), 0 18px 42px rgba(0,0,0,.26); }
.blog-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-default-cover { display: grid; place-items: center; width: 100%; height: 100%; color: #9b8aff; background: linear-gradient(145deg, rgba(44, 100, 205, .16), rgba(119, 57, 213, .13)); }
.blog-default-cover svg { width: 42px; height: 42px; }
.blog-card-category { position: relative; z-index: 1; align-self: flex-start; padding: 6px 9px; color: #aa9eff; background: rgba(111, 77, 255, .08); border: 1px solid rgba(129, 102, 255, .2); border-radius: 99px; font-size: 9px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.blog-card h3 { position: relative; z-index: 1; display: -webkit-box; margin: 17px 0 10px; overflow: hidden; font: 680 24px/1.17 var(--font-display); letter-spacing: -.035em; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.blog-card p { position: relative; z-index: 1; display: -webkit-box; margin: 0 0 20px; overflow: hidden; color: var(--text-faint); font-size: 12px; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.blog-card-meta, .blog-card-stats { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; color: var(--text-faint); font-size: 12px; line-height: 1.45; }
.blog-card-meta { margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); }.blog-card-meta span::before { content: "·"; margin-right: 12px; }
.blog-card-stats { margin-top: 13px; }.blog-card-stats b { margin-left: auto; color: var(--accent-bright); font-weight: 650; }
.blog-read-state, .blog-saved-state { position: absolute; z-index: 3; top: 18px; display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; }
.blog-read-state { left: 18px; }.blog-read-state i { width: 10px; height: 10px; border-radius: 50%; }
.blog-read-state.is-unread { width: 32px; height: 32px; color: #092e20; background: linear-gradient(145deg, #dcfff0, #70f1b5); border: 1px solid rgba(57, 230, 157, .9); box-shadow: 0 0 0 4px rgba(57, 230, 157, .14), 0 0 28px rgba(57, 230, 157, .58); }.blog-read-state.is-unread i { background: #07985d; box-shadow: 0 0 0 3px rgba(255,255,255,.65), 0 0 13px rgba(7,152,93,.8); }
.blog-saved-state { right: 18px; color: #9f91ff; background: rgba(90, 66, 190, .14); border: 1px solid rgba(132, 109, 255, .3); }.blog-saved-state svg { width: 15px; height: 15px; }
.blog-scroll-status { display: flex; min-height: 110px; align-items: center; justify-content: center; gap: 13px; color: var(--text-faint); }
.blog-loader { width: 19px; height: 19px; border: 2px solid rgba(132, 109, 255, .16); border-top-color: #8f7cff; border-radius: 50%; animation: blog-spin .8s linear infinite; }
.blog-scroll-status.is-finished .blog-loader { display: none; }.blog-scroll-status.has-error small { color: #ff919e; }
@keyframes blog-spin { to { transform: rotate(360deg); } }
.blog-empty-state { min-height: 420px; display: grid; place-items: center; align-content: center; padding: 50px; text-align: center; background: rgba(255,255,255,.015); border: 1px dashed var(--line); border-radius: 24px; }
.blog-empty-state .blog-default-cover { width: 74px; height: 74px; margin-bottom: 20px; border-radius: 50%; }.blog-empty-state h2 { margin: 0; }.blog-empty-state p { color: var(--text-faint); }

html[data-theme="light"] .blog-hero {
  color: #10243a;
  background:
    radial-gradient(circle at 50% 10%, rgba(108, 82, 230, .13), transparent 42%),
    radial-gradient(circle at 8% 24%, rgba(28, 134, 239, .12), transparent 34%),
    linear-gradient(155deg, #eaf3fc 0%, #f7faff 55%, #f1edff 100%);
}
html[data-theme="light"] .blog-hero::after { background: linear-gradient(90deg, transparent, rgba(87, 95, 221, .34), transparent); }
html[data-theme="light"] .blog-hero h1 { color: #10243a; }
html[data-theme="light"] .blog-hero p { color: #52677e; }
html[data-theme="light"] .blog-hero .kicker { color: #176cca; }
html[data-theme="light"] .blog-hero .blog-breadcrumb { color: #647991; }
html[data-theme="light"] .blog-hero .blog-breadcrumb a { color: #49647f; }
html[data-theme="light"] .blog-hero .blog-breadcrumb strong { color: #223d5b; }
html[data-theme="light"] .blog-hero .blog-aurora { opacity: .13; }
html[data-theme="light"] .blog-filter-panel label { color: #536980; }
html[data-theme="light"] .blog-filter-panel input,
html[data-theme="light"] .blog-filter-panel select {
  color-scheme: light;
  color: #10243a;
  border-color: rgba(37, 86, 139, .2);
  background: #f8fbff;
}
html[data-theme="light"] .blog-filter-panel input::placeholder { color: #7b8ca0; }
html[data-theme="light"] .blog-card-link { color: #10243a; }
html[data-theme="light"] .blog-card p,
html[data-theme="light"] .blog-card-meta,
html[data-theme="light"] .blog-card-stats { color: #61748a; }

.notification-button { position: relative; }.notification-count { position: absolute; top: -5px; right: -6px; display: grid; min-width: 21px; height: 21px; place-items: center; padding: 0 5px; color: #fff; background: linear-gradient(135deg, #704bff, #2e9cff); border: 2px solid var(--bg); border-radius: 99px; font-size: 10px; font-weight: 750; box-shadow: 0 0 15px rgba(93, 71, 255, .45); }
.menu-notification-link { display: flex !important; justify-content: space-between !important; }.menu-notification-link b { display: grid; min-width: 23px; height: 23px; place-items: center; padding: 0 6px; color: #fff; background: #765aff; border-radius: 99px; font-size: 11px; }

.home-blog-invite { position: relative; overflow: hidden; background: var(--bg); }
.home-blog-card { position: relative; display: grid; grid-template-columns: 105px minmax(0, 1fr) auto; align-items: center; gap: 28px; min-height: 265px; padding: 42px 48px; overflow: hidden; background: linear-gradient(125deg, rgba(16, 35, 73, .96), rgba(39, 21, 83, .94) 52%, rgba(18, 46, 91, .95)); border: 1px solid rgba(128, 105, 255, .28); border-radius: 30px; box-shadow: 0 35px 100px rgba(12, 4, 40, .35); transition: transform .35s ease, border-color .35s ease; }
.home-blog-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 18% 10%, rgba(39, 139, 255, .24), transparent 35%), radial-gradient(circle at 85% 85%, rgba(167, 59, 255, .22), transparent 38%); }
.home-blog-card:hover { transform: translateY(-7px); border-color: rgba(151, 127, 255, .55); }
.home-blog-card > * { position: relative; z-index: 2; }
.home-blog-symbol { display: grid; width: 98px; height: 98px; place-items: center; color: #c2b9ff; background: linear-gradient(145deg, rgba(38, 135, 255, .2), rgba(147, 52, 230, .18)); border: 1px solid rgba(155, 133, 255, .35); border-radius: 50%; box-shadow: 0 0 0 12px rgba(112, 83, 255, .045), 0 0 55px rgba(88, 65, 255, .18); }.home-blog-symbol svg { width: 45px; height: 45px; }
.home-blog-card h2 { margin: 10px 0 8px; color: #fff; font: 680 clamp(31px, 4vw, 52px)/1.03 var(--font-display); letter-spacing: -.055em; }.home-blog-card p { max-width: 710px; margin: 0; color: rgba(224, 229, 246, .68); font-size: 13px; line-height: 1.7; }
.home-blog-cta { display: flex; min-height: 50px; align-items: center; gap: 13px; padding: 0 17px; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 13px; font-size: 10px; font-weight: 650; white-space: nowrap; }.home-blog-cta b { color: #bcaeff; font-size: 16px; }
.home-blog-orbit { position: absolute; z-index: 0; inset: 0; }.home-blog-orbit i { position: absolute; border: 1px solid rgba(147, 126, 255, .08); border-radius: 50%; }.home-blog-orbit i:nth-child(1) { width: 340px; height: 340px; top: -180px; right: -40px; }.home-blog-orbit i:nth-child(2) { width: 230px; height: 230px; bottom: -170px; left: 32%; }.home-blog-orbit i:nth-child(3) { width: 120px; height: 120px; top: -70px; left: 8%; }

.profile-notification-link { position: relative; }.profile-notification-link b { display: grid; min-width: 23px; height: 23px; place-items: center; margin-left: 7px; color: #fff; background: #7357ff; border-radius: 99px; font-size: 11px; }
.profile-favorites { margin-top: 25px; padding: 30px; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; }
.profile-favorites > header { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-bottom: 22px; }.profile-favorites:not(.is-open) > header { margin-bottom: 0; }.profile-favorites h2 { margin: 7px 0 0; font: 650 28px var(--font-display); letter-spacing: -.04em; }.profile-favorites-discover { color: var(--accent-bright); font-size: 11px; font-weight: 650; }
.profile-favorite-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.profile-favorite-card { position: relative; min-width: 0; padding: 13px; background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: 15px; transition: transform .2s ease, border-color .2s ease; }.profile-favorite-card:hover { transform: translateY(-4px); border-color: rgba(121, 99, 232, .35); }.profile-favorite-card > a { display: flex; min-width: 0; height: 100%; flex-direction: column; }.profile-favorite-cover { display: grid; height: 125px; place-items: center; margin-bottom: 12px; overflow: hidden; color: #a393ff; background: rgba(108,78,219,.08); border-radius: 10px; }.profile-favorite-cover img { width: 100%; height: 100%; object-fit: cover; }.profile-favorite-card small, .profile-favorite-card time { color: var(--text-faint); font-size: 8px; }.profile-favorite-card strong { display: -webkit-box; margin: 7px 0 13px; overflow: hidden; font-size: 12px; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }.profile-favorite-card time { margin-top: auto; }.profile-favorite-card > form { position: absolute; top: 8px; right: 8px; }.profile-favorite-card > form button { width: 29px; height: 29px; color: #fff; background: rgba(8, 12, 22, .75); border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.profile-favorites-empty { display: grid; min-height: 150px; place-items: center; align-content: center; color: var(--text-faint); text-align: center; border: 1px dashed var(--line); border-radius: 14px; }.profile-favorites-empty span { color: #9888f8; font-size: 22px; }.profile-favorites-empty p { margin: 10px 0 0; font-size: 10px; }

.notifications-page { position: relative; min-height: 100vh; padding: 135px 0 100px; overflow: hidden; background: radial-gradient(circle at 20% 0%, rgba(91, 60, 206, .13), transparent 33%), var(--bg); }
.notifications-shell { position: relative; z-index: 2; max-width: 900px; }
.notifications-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin: 45px 0 25px; }.notifications-heading h1 { margin: 10px 0 6px; font: 700 clamp(43px, 6vw, 68px)/1 var(--font-display); letter-spacing: -.06em; }.notifications-heading p { margin: 0; color: var(--text-faint); font-size: 11px; }.notifications-heading p strong { color: #9e8dff; }.notifications-heading .button { border-color: var(--line); }
.notification-list { overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; }.notification-list form { margin: 0; }
.notification-row { position: relative; display: grid; width: 100%; grid-template-columns: 46px minmax(0, 1fr) auto; align-items: center; gap: 15px; min-height: 105px; padding: 17px 22px; color: var(--text); text-align: left; background: transparent; border: 0; border-bottom: 1px solid var(--line); cursor: pointer; }.notification-list form:last-child .notification-row { border-bottom: 0; }.notification-row.is-unread { background: linear-gradient(90deg, rgba(95, 72, 213, .085), transparent 55%); }.notification-row.is-unread::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: linear-gradient(#477dff, #9e4cff); }.notification-symbol { display: grid; width: 44px; height: 44px; place-items: center; color: #a99bff; background: rgba(108, 77, 221, .08); border: 1px solid rgba(125,104,226,.19); border-radius: 13px; }.notification-copy { min-width: 0; }.notification-copy strong, .notification-copy > span, .notification-copy time { display: block; }.notification-copy strong { font-size: 14px; }.notification-copy > span { margin-top: 5px; color: var(--text-faint); font-size: 12px; line-height: 1.55; }.notification-copy time { margin-top: 7px; color: var(--text-faint); font-size: 11px; }.notification-arrow { color: #9e90fb; font-size: 17px; }
.notifications-empty { display: grid; min-height: 340px; place-items: center; align-content: center; text-align: center; }.notifications-empty > span { color: #9f8eff; font-size: 28px; }.notifications-empty h2 { margin: 15px 0 5px; }.notifications-empty p { margin: 0; color: var(--text-faint); font-size: 12px; }
.notification-infinite-status{display:flex;min-height:72px;align-items:center;justify-content:center;gap:12px;color:var(--text-faint);font-size:12px}.notification-infinite-status::before{width:18px;height:18px;border:2px solid rgba(133,111,255,.2);border-top-color:#8975ff;border-radius:50%;content:"";animation:notification-status-spin .8s linear infinite}.notification-infinite-status:not(.is-loading)::before{opacity:.55;animation-play-state:paused}.notification-infinite-status.is-error{color:#ff8793}.notification-infinite-status.is-error::before{display:none}.notification-infinite-status.is-complete{display:none}.notification-infinite-status button{padding:7px 12px;color:#9d8cff;background:rgba(114,83,230,.08);border:1px solid rgba(133,111,255,.24);border-radius:999px;font-size:11px;font-weight:700;cursor:pointer}@keyframes notification-status-spin{to{transform:rotate(360deg)}}
.notification-dialog-open{overflow:hidden}.notification-message-dialog{width:min(560px,calc(100% - 28px));max-width:none;margin:auto;padding:0;color:var(--text);border:1px solid var(--line);border-radius:24px;background:var(--surface);box-shadow:0 35px 110px rgba(0,0,0,.55)}.notification-message-dialog::backdrop{background:rgba(2,7,15,.78);backdrop-filter:blur(8px)}.notification-dialog-card{padding:0}.notification-dialog-card header{display:flex;padding:23px 25px 19px;align-items:flex-start;justify-content:space-between;gap:18px;border-bottom:1px solid var(--line)}.notification-dialog-card header span{color:#8e7dff;font-size:12px;font-weight:800;letter-spacing:.17em}.notification-dialog-card h2{margin:7px 0 0;font:700 24px/1.2 var(--font-display)}.notification-dialog-card header button{display:grid;flex:0 0 38px;width:38px;height:38px;padding:0;place-items:center;color:var(--text-faint);border:1px solid var(--line);border-radius:50%;background:transparent;font-size:22px;cursor:pointer}.notification-dialog-card>p{margin:0;padding:24px 25px;color:var(--text-soft);font-size:14px;line-height:1.75;white-space:pre-wrap}.notification-dialog-card footer{display:flex;padding:0 25px 25px;justify-content:flex-end}.notification-dialog-card footer .button{min-width:130px}

.article-header { position: relative; padding: 135px 0 78px; overflow: hidden; background: radial-gradient(circle at 50% 0%, rgba(71, 46, 177, .18), transparent 44%), var(--bg-soft); border-bottom: 1px solid var(--line); }
.article-header-inner { position: relative; }
.article-cover { display: grid; place-items: center; width: min(100%, 1040px); height: min(48vw, 480px); min-height: 290px; margin: 48px auto 55px; overflow: hidden; background: linear-gradient(145deg, #0d1727, #100b25); border: 1px solid rgba(116, 97, 234, .2); border-radius: 30px; box-shadow: 0 35px 100px rgba(0,0,0,.38); }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-cover.has-image { height: auto; min-height: 0; }
.article-cover.has-image img { display: block; width: 100%; height: auto; object-fit: contain; }
.article-default-cover { display: grid; place-items: center; width: 155px; height: 155px; color: #9c8aff; background: radial-gradient(circle, rgba(108, 73, 255, .18), transparent 70%); border: 1px solid rgba(119, 92, 255, .24); border-radius: 50%; box-shadow: 0 0 70px rgba(91, 57, 255, .15); }.article-default-cover svg { width: 70px; height: 70px; }
.article-heading-copy { max-width: 880px; margin: auto; text-align: center; }
.article-category { display: inline-flex; padding: 7px 11px; color: #a699ff; background: rgba(108, 76, 255, .08); border: 1px solid rgba(130, 107, 255, .2); border-radius: 99px; font-size: 12px; font-weight: 750; text-transform: uppercase; }
.article-heading-copy h1 { margin: 22px 0 19px; font: 720 clamp(43px, 6vw, 78px)/.99 var(--font-display); letter-spacing: -.06em; }
.article-heading-copy > p { max-width: 730px; margin: 0 auto; color: var(--text-soft); font-size: 17px; line-height: 1.7; }
.article-byline { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; text-align: left; }.article-author-avatar { display: grid; place-items: center; width: 42px; height: 42px; color: #c5bcff; background: linear-gradient(145deg, rgba(61, 122, 229, .24), rgba(115, 63, 205, .22)); border: 1px solid rgba(131, 111, 255, .25); border-radius: 50%; font-size: 13px; font-weight: 750; }.article-byline strong, .article-byline small { display: block; }.article-byline strong { font-size: 14px; }.article-byline small { margin-top: 4px; color: var(--text-faint); font-size: 12px; }

.article-layout { display: grid; grid-template-columns: 90px minmax(0, 790px); justify-content: center; gap: 40px; padding-top: 75px; padding-bottom: 100px; }
.article-share-rail { position: sticky; top: 25px; align-self: start; display: flex; flex-direction: column; gap: 9px; }
.article-action { display: flex; min-height: 62px; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 8px; color: #b9b4dc; background: linear-gradient(145deg, rgba(36,48,83,.88), rgba(20,25,48,.92)); border: 1px solid rgba(125,112,239,.34); border-radius: 14px; box-shadow: inset 0 1px rgba(255,255,255,.04), 0 8px 22px rgba(38,29,101,.13); font-size: 12px; cursor: pointer; transition: .2s ease; }.article-action svg { width: 20px; height: 20px; fill: currentColor; }.article-action:hover, .article-action.is-active { color: #fff; border-color: rgba(151,132,255,.85); background: linear-gradient(145deg, rgba(98,72,236,.34), rgba(45,114,226,.22)); box-shadow: 0 0 0 3px rgba(126,103,255,.1), 0 10px 30px rgba(83,56,219,.24); transform: translateY(-2px); }
.article-main { min-width: 0; }
.article-body { color: var(--text-soft); font-size: 18px; line-height: 1.92; user-select: none; -webkit-user-select: none; }
.article-body p { margin: 0 0 31px; white-space: pre-line; }.article-body p:first-child::first-letter { float: left; margin: 8px 10px 0 0; color: #9f8fff; font: 720 64px/.72 var(--font-display); }
.article-action-panel { margin: 62px 0 38px; padding: 30px; background: radial-gradient(circle at 90% 0, rgba(118,88,255,.2), transparent 42%), linear-gradient(135deg, rgba(35,91,174,.2), rgba(94,48,177,.18)); border: 1px solid rgba(139,119,255,.44); border-radius: 22px; box-shadow: inset 0 1px rgba(255,255,255,.05), 0 18px 48px rgba(54,38,136,.14); }
.article-action-panel h2 { margin: 7px 0 23px; font: 650 26px/1.2 var(--font-display); letter-spacing: -.035em; }
.article-action-panel-buttons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.article-action-wide { min-height: 49px; padding: 0 10px; color: #d4d0ef; background: linear-gradient(145deg, rgba(81,66,171,.15), rgba(34,52,98,.16)); border: 1px solid rgba(132,113,241,.34); border-radius: 11px; box-shadow: inset 0 1px rgba(255,255,255,.035); font-size: 12px; font-weight: 650; cursor: pointer; transition: .2s ease; }.article-action-wide:hover, .article-action-wide.is-active { color: #fff; border-color: rgba(157,139,255,.86); background: linear-gradient(135deg, rgba(105,76,235,.42), rgba(43,122,232,.3)); box-shadow: 0 8px 24px rgba(76,52,203,.22), 0 0 0 3px rgba(130,109,255,.1); transform: translateY(-1px); }

.article-comments { scroll-margin-top: 30px; margin: 0 0 65px; overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; }
.article-comments > summary { display: flex; min-height: 100px; align-items: center; justify-content: space-between; padding: 23px 28px; cursor: pointer; list-style: none; }.article-comments > summary::-webkit-details-marker { display: none; }.article-comments > summary small, .article-comments > summary strong { display: block; }.article-comments > summary strong { margin-top: 7px; font-size: 18px; }.article-comments > summary i { color: #9c8dff; font-size: 26px; font-style: normal; transition: transform .25s ease; }.article-comments[open] > summary i { transform: rotate(45deg); }
.comments-inner { padding: 0 28px 30px; border-top: 1px solid var(--line); }
.blog-status-message { margin-top: 22px; padding: 13px 15px; color: #68edb3; background: rgba(56, 218, 148, .07); border: 1px solid rgba(56, 218, 148, .2); border-radius: 11px; font-size: 12px; }
.comment-guideline { display: flex; gap: 13px; margin: 24px 0 18px; padding: 15px; color: var(--text-faint); background: rgba(114, 88, 229, .05); border: 1px solid rgba(120, 99, 226, .14); border-radius: 12px; }.comment-guideline > span { color: #9d8fff; }.comment-guideline p { margin: 0; font-size: 12px; line-height: 1.65; }
.comment-form { padding: 18px; background: rgba(255,255,255,.018); border: 1px solid var(--line); border-radius: 14px; }.comment-form label { display: block; margin-bottom: 8px; color: var(--text-soft); font-size: 13px; font-weight: 650; }.comment-form textarea { width: 100%; min-height: 125px; resize: vertical; padding: 14px; color: var(--text); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 11px; outline: none; font: 14px/1.65 var(--font-text); }.comment-form textarea:focus { border-color: rgba(117, 99, 238, .55); }.comment-form > div:last-child { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 10px; }.comment-form small { color: var(--text-faint); font-size: 11px; }.comment-form .button { min-height: 42px; border: 0; }
.comment-form .comment-allowance { display: flex; align-items: center; gap: 6px; margin: 12px 0 0; color: var(--text-faint); font-size: 11px; }.comment-allowance strong { color: #9f90ff; font-size: 13px; }.comment-limit-reached { display: flex; min-height: 74px; align-items: center; justify-content: center; gap: 10px; padding: 16px; color: #f0b865; background: rgba(218,146,43,.07); border: 1px solid rgba(231,162,62,.24); border-radius: 13px; font-size: 13px; text-align: center; }.comment-limit-reached span { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(231,162,62,.34); border-radius: 50%; }
.comment-reply-context { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; padding: 9px 11px; color: #aa9dff; background: rgba(108, 76, 229, .08); border-radius: 8px; font-size: 12px; }.comment-reply-context button { color: inherit; background: none; border: 0; }
.comment-login-prompt { width: 100%; min-height: 75px; color: var(--text-soft); background: rgba(255,255,255,.018); border: 1px dashed rgba(126, 105, 235, .25); border-radius: 13px; font-size: 13px; cursor: pointer; }.comment-login-prompt span { margin-right: 8px; color: #a899ff; }
.comment-thread { margin-top: 28px; }
.blog-comment { position: relative; display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 12px; }
.comment-rail { position: relative; }.comment-rail::after { content: ""; position: absolute; top: 18px; bottom: -1px; left: 8px; width: 1px; background: linear-gradient(var(--line), transparent); }.comment-rail i { position: relative; z-index: 1; display: block; width: 17px; height: 17px; background: var(--surface); border: 2px solid #7768db; border-radius: 50%; }
.comment-content { min-width: 0; padding: 0 0 25px; }.comment-content > header { display: flex; align-items: center; gap: 9px; }.comment-avatar { display: grid; place-items: center; width: 36px; height: 36px; color: #b8afff; background: rgba(105, 78, 211, .09); border-radius: 9px; font-size: 12px; font-weight: 750; }.comment-content header strong, .comment-content header time { display: block; }.comment-content header strong { font-size: 14px; }.comment-content header time { margin-top: 2px; color: var(--text-faint); font-size: 11px; }.comment-content > p { margin: 12px 0; color: var(--text-soft); font-size: 14px; line-height: 1.72; white-space: pre-line; }.comment-content > footer { display: flex; flex-wrap: wrap; gap: 8px; }.comment-content > footer button { min-height: 32px; padding: 0 10px; color: var(--text-faint); background: transparent; border: 1px solid var(--line); border-radius: 8px; font-size: 11px; cursor: pointer; }.comment-content > footer button:hover, .comment-content > footer button.is-active { color: #aa9dff; border-color: rgba(122, 103, 230, .3); }
.comment-owner-badge { display: inline-flex; margin: 3px 0 1px; padding: 3px 7px; color: #77eeba; background: rgba(47,204,139,.08); border: 1px solid rgba(62,221,153,.2); border-radius: 99px; font-size: 9px; font-weight: 700; }.comment-content > footer .comment-owner-action { color: #aaa0f6; border-color: rgba(132,112,241,.23); }.comment-content > footer .comment-owner-action.is-danger { color: #ff909b; border-color: rgba(255,91,108,.22); }.comment-content > footer .comment-owner-action.is-danger:hover { color: #ffd2d6; background: rgba(255,76,95,.08); border-color: rgba(255,91,108,.45); }
.comment-replies { margin-top: 18px; margin-left: 3px; }
.comments-empty { padding: 40px 20px; text-align: center; color: var(--text-faint); }.comments-empty strong { color: var(--text-soft); font-size: 14px; }.comments-empty p { margin: 7px 0 0; font-size: 12px; }

.related-articles { margin: 0 0 60px; }.related-articles header { margin-bottom: 20px; }.related-articles h2 { margin: 7px 0 0; font: 650 32px var(--font-display); letter-spacing: -.04em; }
.related-article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.related-article-card { display: flex; min-width: 0; flex-direction: column; padding: 14px; background: var(--surface); border: 1px solid var(--line); border-radius: 15px; transition: transform .2s ease, border-color .2s ease; }.related-article-card:hover { transform: translateY(-5px); border-color: rgba(123, 103, 234, .35); }.related-article-card > span:first-child { display: grid; place-items: center; height: 110px; margin-bottom: 13px; overflow: hidden; border-radius: 10px; }.related-article-card img { width: 100%; height: 100%; object-fit: cover; }.related-article-card small, .related-article-card time { color: var(--text-faint); font-size: 11px; }.related-article-card strong { display: -webkit-box; margin: 8px 0 13px; overflow: hidden; font-size: 14px; line-height: 1.4; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }.related-article-card time { margin-top: auto; }
.article-bottom-breadcrumb { padding-top: 24px; border-top: 1px solid var(--line); }

.auth-required-modal { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: .22s ease; }.auth-required-modal.is-open { visibility: visible; opacity: 1; }.auth-modal-backdrop { position: absolute; inset: 0; background: rgba(0, 3, 9, .78); border: 0; backdrop-filter: blur(12px); }.auth-modal-card { position: relative; z-index: 1; width: min(440px, 100%); padding: 36px; text-align: center; background: linear-gradient(145deg, #10182a, #090d18); border: 1px solid rgba(126, 104, 246, .3); border-radius: 24px; box-shadow: 0 35px 110px rgba(0,0,0,.55); }.auth-modal-close { position: absolute; top: 14px; right: 14px; width: 35px; height: 35px; color: var(--text-faint); background: transparent; border: 1px solid var(--line); border-radius: 50%; }.auth-modal-icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 20px; color: #a899ff; background: rgba(105, 74, 233, .1); border: 1px solid rgba(126, 104, 246, .25); border-radius: 50%; font-size: 25px; }.auth-modal-card h2 { margin: 0; font: 680 30px var(--font-display); letter-spacing: -.04em; }.auth-modal-card p { margin: 13px 0 24px; color: var(--text-faint); font-size: 13px; line-height: 1.7; }.auth-modal-card .button { width: 100%; margin-top: 8px; }.modal-open { overflow: hidden; }
.comment-manage-modal { position: fixed; z-index: 205; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s ease; }.comment-manage-modal.is-open { visibility: visible; opacity: 1; }.comment-modal-backdrop { position: absolute; inset: 0; padding: 0; background: rgba(2,5,14,.76); border: 0; backdrop-filter: blur(11px); }.comment-modal-card { position: relative; z-index: 1; width: min(510px, 100%); padding: 31px; color: var(--text); background: radial-gradient(circle at 85% 0, rgba(115,79,241,.15), transparent 40%), linear-gradient(145deg, #121a2d, #0a0f1d); border: 1px solid rgba(139,119,255,.38); border-radius: 23px; box-shadow: 0 35px 100px rgba(0,0,0,.55); }.comment-modal-close { position: absolute; top: 14px; right: 14px; display: grid; width: 36px; height: 36px; place-items: center; padding: 0; color: var(--text-faint); background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 19px; cursor: pointer; }.comment-modal-icon { display: grid; width: 58px; height: 58px; place-items: center; margin-bottom: 18px; color: #c2b9ff; background: rgba(110,81,230,.13); border: 1px solid rgba(142,121,255,.3); border-radius: 17px; font-size: 23px; box-shadow: 0 0 24px rgba(103,76,225,.12); }.comment-modal-card.is-danger .comment-modal-icon { color: #ff9da7; background: rgba(255,73,94,.09); border-color: rgba(255,91,109,.3); }.comment-modal-card.is-blocked .comment-modal-icon { color: #ffd27b; background: rgba(255,183,56,.09); border-color: rgba(255,190,71,.3); }.comment-modal-card h2 { margin: 0; font: 680 28px/1.2 var(--font-display); letter-spacing: -.035em; }.comment-modal-card > p { margin: 11px 0 20px; color: var(--text-faint); font-size: 13px; line-height: 1.65; }.comment-modal-editor textarea { width: 100%; min-height: 150px; resize: vertical; padding: 14px; color: var(--text); background: var(--bg-soft); border: 1px solid rgba(137,117,246,.32); border-radius: 12px; outline: none; font: 14px/1.65 var(--font-text); }.comment-modal-editor textarea:focus { border-color: rgba(151,132,255,.75); box-shadow: 0 0 0 3px rgba(126,103,255,.1); }.comment-modal-editor small { display: block; margin-top: 7px; color: var(--text-faint); font-size: 10px; text-align: right; }.comment-modal-status { margin: 0 0 14px; padding: 10px 12px; color: #ffabb4; background: rgba(255,76,95,.07); border: 1px solid rgba(255,91,108,.2); border-radius: 10px; font-size: 11px; }.comment-modal-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 23px; }.comment-modal-actions .button { min-width: 118px; }.comment-modal-card.is-danger [data-comment-modal-confirm] { background: linear-gradient(135deg,#e4495c,#b92743); box-shadow: 0 11px 28px rgba(205,46,72,.22); }.comment-modal-card.is-blocked [data-comment-modal-confirm] { display: none; }
html[data-theme="light"] .auth-modal-backdrop { background: rgba(31, 42, 55, .52); }
html[data-theme="light"] .auth-modal-card { color: #10243a; background: linear-gradient(145deg, #ffffff, #f4f7fb); border-color: rgba(62, 99, 145, .22); box-shadow: 0 35px 100px rgba(18, 35, 56, .28); }
html[data-theme="light"] .auth-modal-card h2 { color: #10243a; }
html[data-theme="light"] .auth-modal-card p { color: #536b84; }
html[data-theme="light"] .auth-modal-close { color: #536b84; background: #f5f8fc; border-color: #d6e0eb; }
html[data-theme="light"] .auth-modal-icon { color: #6547d8; background: #eeeaff; border-color: #cec3ff; }
html[data-theme="light"] .auth-modal-card .button-ghost { color: #16324f; background: #edf3f9; border-color: #cfdae6; }
html[data-theme="light"] .auth-modal-card .button-ghost:hover { color: #0b2138; background: #e1ebf5; border-color: #b9c9da; }
html[data-theme="light"] .article-action { color: #425775; background: linear-gradient(145deg,#fff,#eef2fb); border-color: rgba(92,78,203,.25); box-shadow: 0 8px 20px rgba(43,58,97,.09); }html[data-theme="light"] .article-action:hover, html[data-theme="light"] .article-action.is-active { color: #493bb0; }html[data-theme="light"] .article-action-wide { color: #3e506b; background: linear-gradient(145deg,#fff,#eef1fb); border-color: rgba(89,72,199,.25); }html[data-theme="light"] .article-action-wide:hover, html[data-theme="light"] .article-action-wide.is-active { color: #fff; }html[data-theme="light"] .comment-modal-backdrop { background: rgba(31,42,55,.5); }html[data-theme="light"] .comment-modal-card { color: #10243a; background: radial-gradient(circle at 85% 0,rgba(115,79,241,.1),transparent 42%),linear-gradient(145deg,#fff,#f4f7fb); border-color: rgba(83,70,179,.24); box-shadow: 0 35px 90px rgba(24,39,61,.24); }html[data-theme="light"] .comment-modal-card h2 { color: #10243a; }html[data-theme="light"] .comment-modal-editor textarea { color: #10243a; background: #fff; border-color: rgba(70,91,121,.24); }html[data-theme="light"] .comment-manage-modal .button-ghost { color: #193451; background: #edf2f8; border-color: rgba(57,86,119,.2); }

.comment-quota-modal { position: fixed; z-index: 206; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .2s ease, visibility .2s ease; }.comment-quota-modal.is-open { visibility: visible; opacity: 1; }.comment-modal-card.is-quota .comment-modal-icon { color: #ffd27b; background: rgba(255,183,56,.09); border-color: rgba(255,190,71,.3); }.comment-modal-card.is-quota [data-comment-quota-confirm] { background: linear-gradient(135deg,#7256f1,#317ee9); box-shadow: 0 11px 28px rgba(72,76,209,.24); }
html[data-theme="light"] .article-action { color: #263d5b; border-color: rgba(78,65,183,.32); box-shadow: 0 8px 20px rgba(43,58,97,.1); }html[data-theme="light"] .article-action:hover, html[data-theme="light"] .article-action.is-active { color: #fff; background: linear-gradient(135deg,#6650d9,#2879d9); border-color: #5945c7; box-shadow: 0 9px 24px rgba(65,64,176,.28); }html[data-theme="light"] .article-action-wide { color: #253b59; border-color: rgba(75,62,177,.34); box-shadow: 0 6px 18px rgba(42,57,96,.1); }html[data-theme="light"] .article-action-wide:hover, html[data-theme="light"] .article-action-wide.is-active { color: #fff; background: linear-gradient(135deg,#684edb,#2579d9); border-color: #5943c9; box-shadow: 0 8px 23px rgba(65,61,177,.3); }html[data-theme="light"] .comment-quota-modal .button-ghost { color: #193451; background: #edf2f8; border-color: rgba(57,86,119,.2); }

@media (max-width: 980px) {
  .blog-filter-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: 1fr; }
  .article-share-rail { position: static; flex-direction: row; justify-content: center; order: 2; }
  .article-action { min-width: 70px; min-height: 55px; }
  .home-blog-card { grid-template-columns: 90px minmax(0, 1fr); }.home-blog-cta { grid-column: 2; justify-self: start; }
}

@media (max-width: 680px) {
  .blog-hero { min-height: 480px; padding: 105px 0 100px; }
  .blog-hero .blog-breadcrumb { margin-bottom: 38px; }
  .blog-hero h1 { font-size: 47px; }
  .blog-hero p { font-size: 14px; }
  .blog-catalog { padding-top: 70px; }
  .blog-filter-panel { grid-template-columns: 1fr; margin-top: -115px; padding: 15px; }
  .blog-result-heading { align-items: flex-start; flex-direction: column; margin-top: 50px; }
  .blog-card-grid { grid-template-columns: 1fr; gap: 14px; }
  .blog-card-link { min-height: 410px; }
  .blog-card:hover .blog-card-link { transform: translateY(-5px); }
  .article-header { padding: 92px 0 55px; }
  .article-header .blog-breadcrumb { margin-top: 10px; }
  .article-cover { height: 260px; min-height: 0; margin: 35px auto 38px; border-radius: 20px; }
  .article-default-cover { width: 110px; height: 110px; }.article-default-cover svg { width: 52px; height: 52px; }
  .article-heading-copy h1 { font-size: 43px; }
  .article-heading-copy > p { font-size: 14px; }
  .article-layout { gap: 25px; padding-top: 48px; padding-bottom: 80px; }
  .article-share-rail { flex-wrap: wrap; }
  .article-body { font-size: 16px; line-height: 1.85; }
  .article-action-panel { padding: 22px; }
  .article-action-panel-buttons { grid-template-columns: repeat(2, 1fr); }
  .article-comments > summary { min-height: 88px; padding: 19px; }
  .comments-inner { padding: 0 17px 22px; }
  .related-article-grid { grid-template-columns: 1fr; }
  .related-article-card { display: grid; grid-template-columns: 95px 1fr; column-gap: 13px; }
  .related-article-card > span:first-child { grid-row: 1 / 4; height: 95px; margin: 0; }
  .related-article-card time { grid-column: 2; }
  .auth-modal-card { padding: 32px 22px 25px; }
  .comment-modal-card { padding: 27px 19px 20px; }.comment-modal-card h2 { padding-right: 30px; font-size: 24px; }.comment-modal-actions { align-items: stretch; flex-direction: column-reverse; }.comment-modal-actions .button { width: 100%; }
  .blog-breadcrumb strong { max-width: 180px; }
  .home-blog-invite { padding-block: 70px; }.home-blog-card { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; text-align: center; }.home-blog-symbol { width: 82px; height: 82px; margin: auto; }.home-blog-cta { grid-column: auto; justify-self: stretch; justify-content: center; }.home-blog-card p { font-size: 12px; }
  .profile-favorites { padding: 22px 17px; }.profile-favorites > header { align-items: flex-start; flex-direction: column; }.profile-favorites > header .profile-collapsible-actions { align-items: stretch; width: 100%; flex-direction: column; }.profile-favorites > header .profile-collapse-toggle { width: 100%; }.profile-favorite-grid { grid-template-columns: 1fr; }
  .notifications-page { padding-top: 105px; }.notifications-heading { align-items: flex-start; flex-direction: column; }.notifications-heading form, .notifications-heading .button { width: 100%; }.notification-row { grid-template-columns: 40px minmax(0, 1fr); padding: 15px; }.notification-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .blog-loader { animation: none; }
  .blog-card, .blog-card-link, .auth-required-modal, .comment-manage-modal { transition: none; }
}
