:root{
  --bg: #fbfbfc;
  --surface: #ffffff;
  --surface-2: #f4f5f7;
  --surface-3: #eceef2;

  --text: #0b0d11;
  --muted: #2f3542;
  --subtle: #5f6b7f;

  --border: transparent;
  --border-2: transparent;

  --shadow-sm: 0 8px 18px rgba(0,0,0,.07);
  --shadow: 0 14px 34px rgba(0,0,0,.10);
  --shadow-lg: 0 24px 54px rgba(0,0,0,.14);

  --radius-sm: 10px;
  --radius: 12px;
  --radius-lg: 16px;

  --accent: rgb(39, 142, 98);
  --accent-2: rgb(117, 170, 146);
  --accent-ink: rgba(39,142,98,.012);

  --danger: #c60b26;
  --success: #15803d;
  --warn: #d97706;

  --max: 1420px;
  --wrap-pad: 16px;

  --h1: clamp(26px, 3.2vw, 44px);
  --h2: clamp(18px, 1.8vw, 22px);
  --body: 16px;
  --small: 13px;

  --lh: 1.65;
  --lh-tight: 1.20;

  --focus: rgba(39,142,98,.38);

  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";

  --edge-hi: transparent;
  --edge-lo: transparent;

  --rainbow: var(--accent);

  --grid-1: 19%;
  --grid-2: 17%;
  --grid-3: 16%;
  --grid-a: 16%;
  --grid-b: 15%;
}

*{ box-sizing: border-box; }

html,body{
  height:100%;
}
:root h2{
  margin:10px;
}

html{
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body{
  margin:0;
  min-height: 100vh;
  font-family: var(--sans);
  font-size: var(--body);
  line-height: var(--lh);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background: var(--bg);

  background-size:
    100% 100%,
    120% 120%,
    120% 120%;

  background-position:
    0 0,
    0% 0%,
    100% 0%;

  opacity: 1;
  filter: none;
  animation: tri-drift 18s linear infinite;

}

:root{
  --grid-1: 34%;
  --grid-2: 30%;
  --grid-3: 28%;
  --grid-a: 24%;
  --grid-b: 22%;
}

body::before{
  filter: none;
}

body > *{
  position: relative;
  z-index: 1;
}

@keyframes tri-drift{
from{
  background-position:
    0 0,
    0% 0%,
    100% 0%;
}
to{
  background-position:
    0 0,
    10% 8%,
    92% 10%;
}
}

@media (prefers-reduced-motion: reduce){
  body::before{ animation: none; }
}

a{
  color: inherit;
  text-decoration: none;
}

img{
  max-width:100%;
  display:block;
  border-radius: var(--radius);
}

::selection{
  background: color-mix(in srgb, var(--accent) 20%, transparent);
}

.wrap{
  width: min(var(--max), calc(100% - var(--wrap-pad)*2));
  margin: 0 auto;
}

.page{
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  padding: 16px 70px;
}

@media (min-width: 980px){
  .page{
    grid-template-columns: 0.75fr;
    gap: 22px;
    padding: 22px 0 90px;
  }
  .page.page--3col{
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 980px){
  .page{
    gap: 14px;
    padding: 14px 24px;
  }
}

@media (max-width: 520px){
  :root{ --wrap-pad: 14px; }
  .page{ padding: 12px 0 74px; }
}

.topbar,
.header,
.pageHeader,
header.siteHeader,
header.topbar{
  position: sticky;
  top: 0;
  z-index: 30;
  /*
backdrop-filter: saturate(110%) blur(10px);
-webkit-backdrop-filter: saturate(110%) blur(10px);
*/
  background: var(--accent);
  border-bottom: 0;
  color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,.10), var(--shadow-sm);
}

.topbar .wrap,
.header .wrap,
.pageHeader .wrap,
header.siteHeader .wrap,
header.topbar .wrap{
  padding-top: max(8px, env(safe-area-inset-top));
  padding-bottom: 10px;
}

.topbar__inner,
.header__inner,
.pageHeader__inner,
.siteHeader__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
}

@media (max-width: 720px){
  .topbar__inner,
  .header__inner,
  .pageHeader__inner,
  .siteHeader__inner{
    min-height: 54px;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }
}

.brand{
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
  line-height: 1;
  display:flex;
  align-items:center;
  gap:10px;
  white-space: nowrap;
  color: #fff;
}

/* .brand::before{ */
/*   content:""; */
/*   width: 10px; */
/*   height: 10px; */
/*   border-radius: 999px; */
/*   background: rgba(255,255,255,.9); */
/*   box-shadow: none; */
/* } */

.nav,
.siteNav,
.headerNav{
  display: flex;
  align-items: center;
  gap: 0px;
  flex-wrap: wrap;
}

@media (max-width: 720px){
  .nav,
  .siteNav,
  .headerNav{
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0px;
    padding-bottom: 2px;
  }
  .nav::-webkit-scrollbar,
  .siteNav::-webkit-scrollbar,
  .headerNav::-webkit-scrollbar{
    height: 0;
  }
}

.nav__link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.86);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: background .14s ease, color .14s ease, transform .14s ease, box-shadow .14s ease, filter .14s ease;
  white-space: nowrap;
  border: 0;
  background: transparent;
}

.nav__link:hover{
  background: rgba(255,255,255,.12);
  color: #fff;
  transform: translateY(-1px) scale(1.02);
  box-shadow: var(--shadow-sm);
}

.nav__link--active{
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 0;
  box-shadow: var(--shadow-sm);
}

.headerActions,
.topbarActions,
.siteActions{
  display: flex;
  align-items: center;
  gap: 0px;
  flex-wrap: wrap;
}

@media (max-width: 720px){
  .headerActions,
  .topbarActions,
  .siteActions{
    width: 100%;
    justify-content: flex-start;
  }
}

.card,
.sidecard,
.table,
.notice,
.quote,
.comment,
.linklist a,
.hero{
  position: relative;
  border-radius: var(--radius);
  border: 0;
  background: color-mix(in srgb, var(--accent) 6%, var(--surface));
  box-shadow: var(--shadow-sm);
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
  transform: translateZ(0);
  will-change: transform;
  margin:10px;
  border: 1px solid #e4e6eb;
}

@keyframes rgb-sweep{
0%{ background-position: 0% 50%; }
50%{ background-position: 100% 50%; }
100%{ background-position: 0% 50%; }
}

.card::after,
.sidecard::after,
.linklist a::after,
.hero::after,
.notice::after,
.quote::after,
.comment::after{
  content:none;
}

.card:hover,
.sidecard:hover,
.linklist a:hover{
  box-shadow: var(--shadow);
  /* transform: perspective(900px) translateY(-1px) scale(1.01) rotateX(1.1deg); */
  filter: brightness(.99);
}

.card:hover::after,
.sidecard:hover::after,
.linklist a:hover::after{
  opacity: 0;
}

@media (max-width: 720px){
  .card{
    padding: 8px;
    border-radius: var(--radius);
  }
}

@media (max-width: 520px){
  .card{
    padding: 8px;
    border-radius: var(--radius);
  }
}

.card{
  padding: 8px;
}

.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
}

.grid .card:first-child {
  grid-column: span 2;   
}

@media (min-width: 720px){
  .grid{
    gap: 16px;
  }
}

.sidecard{
  padding: 16px;
  position: sticky;
  top: 86px;
}

@media (max-width: 980px){
  .sidecard{
    position: static;
    top: auto;
  }
}

.sidecard__title{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 14px;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sideitem{
  padding: 12px 12px;
  border-radius: var(--radius);
  transition: background .14s ease, transform .14s ease, box-shadow .14s ease, filter .14s ease;
  border: 0;
  background: transparent;
}

.sideitem:hover{
  background: var(--surface-2);
  transform: translateY(-1px) scale(1.01);
  box-shadow: var(--shadow-sm);
}

.sideitem a{
  font-weight: 850;
  letter-spacing: -0.01em;
}

.small{
  color: var(--subtle);
  font-size: var(--small);
  line-height: 1.45;
}

.h2{
  font-size: var(--h2);
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 2px 2px 8px 2px;
}

.h1{
  font-size: var(--h1);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: var(--lh-tight);
  margin: 0 0 10px 0;
}

.lead{
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 520px){
  .lead{ font-size: 16px; }
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--radius);
  border: 0;
  background: var(--surface-2);
  color: var(--text);
  font-weight: 850;
  letter-spacing: -0.01em;
  font-size: 14px;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease, background .14s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transform: translateZ(0);
  position: relative;
  will-change: transform;
}

.btn::after{
  content:none;
}

.btn:hover{
  box-shadow: var(--shadow);
  transform: perspective(900px) translateY(-2px) scale(1.03) rotateX(1.1deg);
}

.btn:hover::after{
  opacity: 0;
}

.btn:active{
  transform: perspective(900px) translateY(-1px) scale(1.01) rotateX(1.1deg);
  box-shadow: var(--shadow-sm);
}

.btn--primary{
  background: var(--accent);
  border: 0;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

.btn--primary:hover{
  box-shadow: 0 24px 56px rgba(0,0,0,.18);
}

.btn--danger{
  background: var(--danger);
  border: 0;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

@media (max-width: 520px){
  .btn{ height: 38px; padding: 0 14px; }
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 0;
  font-size: 13px;
  font-weight: 850;
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
  box-shadow: var(--shadow-sm);
}

.pill > span{
  display:inline-block;
  transform: translateY(0.5px);
}

.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 0;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  font-weight: 850;
  letter-spacing: -0.01em;
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease, background .14s ease;
  white-space: nowrap;
  position: relative;
  will-change: transform;
}

.chip::after{
  content:none;
}

.chip:hover{
  transform: perspective(900px) translateY(-2px) scale(1.02) rotateX(1deg);
  box-shadow: var(--shadow);
}

.chip:hover::after{
  opacity: 0;
}

.chip:active{
  transform: perspective(900px) translateY(-1px) scale(1.01) rotateX(1deg);
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select{
  width: 100%;
  border-radius: var(--radius);
  border: 0;
  background: var(--surface-2);
  color: var(--text);
  padding: 12px 12px;
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: box-shadow .14s ease, background .14s ease, transform .14s ease, filter .14s ease;
  box-shadow: var(--shadow-sm);
  will-change: transform;
}

textarea{
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus{
  box-shadow:
    inset 0 -3px 0 var(--accent),
    var(--shadow);
  transform: perspective(900px) scale(1.01);
}

.form{
  display:grid;
  gap: 12px;
}

.form__row{
  display:grid;
  gap: 8px;
}

.label{
  font-size: 13px;
  font-weight: 900;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
  letter-spacing: -0.01em;
}

.helper{
  font-size: 13px;
  color: var(--subtle);
  line-height: 1.5;
}

.alert{
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 0;
  background: --bg;
  color: var(--text);
}

.alert--error{
  color:red;
  background: --bg;
}

.alert--success{
  background: var(--surface-2);
}

.hr{
  height:1px;
  background: color-mix(in srgb, var(--text) 12%, transparent);
  margin: 10px 0;
}

.article-title{
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.article-kicker{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent) 92%, var(--muted));
}

.article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-top: 8px;
  color: var(--subtle);
  font-size: 13px;
}

.article-media{
  margin-top: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: relative;
}

.article-media::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: rgba(255,255,255,.10);
  opacity: .65;
}

.article-media img{
  width:100%;
  height:auto;
  display:block;
  filter: saturate(1.08) contrast(1.06);
  transform: translateZ(0);
  border-radius: 0;
}

.article-body{
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.85;
  color: color-mix(in srgb, var(--text) 92%, var(--muted));
}

@media (max-width: 520px){
  .article-body{ font-size: 16px; line-height: 1.8; }
}

.article-body p{
  margin: 0 0 12px 0;
}

.article-body strong{
  color: var(--text);
}

.article-body a{
  color: color-mix(in srgb, var(--accent) 92%, var(--text));
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.kpi-row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

@media (min-width: 720px){
  .kpi-row{
    grid-template-columns: repeat(3, 1fr);
  }
}

.kpi{
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 0;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.kpi__label{
  font-size: 12px;
  color: var(--subtle);
  font-weight: 850;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.kpi__value{
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.03em;
  margin-top: 4px;
}

.kpi__hint{
  font-size: 12px;
  color: var(--subtle);
  margin-top: 6px;
}

.actions-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  justify-content: space-between;
  border-top: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  margin-top: 10px;
  padding-top: 12px;
}

.actions-row__stats{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  align-items:center;
  color: var(--subtle);
  font-size: 13px;
}

.actions-row__right{
  display:flex;
  flex-wrap:wrap;
  gap: 0px;
  align-items:center;
}

.mini{
  font-size: 12px;
  color: var(--subtle);
}

.feedcard{
  padding: 18px;
}

@media (max-width: 720px){
  .feedcard{ padding: 16px; }
}

@media (max-width: 520px){
  .feedcard{ padding: 14px; }
}

.feedcard__top{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feedcard__title{
  font-size: clamp(18px, 2.6vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: 950;
  margin: 10px 0 10px 0;
}

.feedcard__title a{
  color: var(--text);
}

.feedcard__title a:hover{
  color: var(--accent);
}

.feedcard__snippet{
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--text) 86%, var(--muted));
  margin: 0 0 10px 0;
}

@media (max-width: 520px){
  .feedcard__snippet{ font-size: 15px; line-height: 1.7; }
}

.thumb{
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  margin: 10px 0;
  position: relative;
}

.thumb::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: rgba(255,255,255,.10);
  opacity: .65;
  z-index: 1;
}

.thumb img{
  width:100%;
  height:auto;
  filter: saturate(1.10) contrast(1.08);
  transition: transform .14s ease, filter .14s ease;
  transform: translateZ(0);
  border-radius: 0;
}

.thumb:hover img{
  transform: scale(1.02);
  filter: saturate(1.14) contrast(1.10);
}

.badges{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  align-items:center;
}

.badge-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: none;
}

.badge-dot--teal{
  background: var(--accent-2);
  box-shadow: none;
}

.badge-dot--danger{
  background: var(--danger);
  box-shadow: none;
}

.divider{
  height: 1px;
  background: color-mix(in srgb, var(--text) 12%, transparent);
  margin: 10px 0 0 0;
}

.post{
  padding: 18px;
}

@media (max-width: 720px){
  .post{ padding: 16px; }
}

@media (max-width: 520px){
  .post{ padding: 14px; }
}

.post__header{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.post__author{
  font-weight: 950;
  letter-spacing: -0.02em;
}

.post__time{
  color: var(--subtle);
  font-size: 13px;
}

.post__text{
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
}

.quote{
  margin-top: 10px;
  padding: 12px 12px;
}

.quote__title{
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.quote__meta{
  font-size: 13px;
  color: var(--subtle);
}

.quote__link{
  display:inline-flex;
  margin-top: 8px;
  align-items:center;
  gap: 8px;
  font-weight: 900;
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius);
  border: 0;
  background: var(--accent);
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
  box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

.quote__link:hover{
  transform: perspective(900px) translateY(-2px) scale(1.02) rotateX(1deg);
  box-shadow: 0 24px 56px rgba(0,0,0,.18);
}

.list{
  display:grid;
  gap: 12px;
}

.comment{
  padding: 14px 14px;
}

.comment__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.comment__who{
  font-weight: 950;
  letter-spacing: -0.02em;
}

.comment__time{
  font-size: 12px;
  color: var(--subtle);
}

.comment__text{
  margin-top: 8px;
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
  line-height: 1.7;
}

.footerbar{
  margin-top: 14px;
  padding: 16px 0 26px;
  color: var(--subtle);
  font-size: 13px;
}

.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 12px 14px;
  font-weight: 950;
  letter-spacing: -0.01em;
  box-shadow: 0 24px 58px rgba(0,0,0,.16);
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
}

.fab:hover{
  transform: perspective(900px) translateY(-2px) scale(1.03) rotateX(1deg);
  box-shadow: 0 32px 78px rgba(0,0,0,.20);
}

.fab:active{
  transform: translateY(0px);
  box-shadow: 0 24px 58px rgba(0,0,0,.16);
}

@media (max-width: 520px){
  .fab{
    right: 14px;
    bottom: 14px;
    padding: 11px 13px;
  }
}

.fade-in{
  animation: fadeInUp .30s ease both;
}

@keyframes fadeInUp{
from{ opacity:0; transform: translateY(6px); }
to{ opacity:1; transform: translateY(0px); }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline: none;
  box-shadow:
    inset 0 -3px 0 var(--accent),
    var(--shadow-sm);
}

.table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.table th,
.table td{
  text-align:left;
  padding: 12px 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--text) 12%, transparent);
  vertical-align: top;
  font-size: 14px;
}

.table th{
  font-weight: 950;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
  background: var(--surface-2);
}

.table tr:last-child td{
  border-bottom: none;
}

kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 0;
  background: var(--surface-2);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.muted{ color: var(--subtle); }
.center{ text-align:center; }
.right{ text-align:right; }

.stack{
  display:grid;
  gap: 12px;
}

.hero{
  padding: 18px;
}

@media (max-width: 720px){
  .hero{ padding: 16px; }
}

@media (max-width: 520px){
  .hero{ padding: 14px; border-radius: var(--radius); }
}

.hero__title{
  font-size: clamp(20px, 3.0vw, 34px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 6px 0;
}

.hero__subtitle{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero__actions{
  margin-top: 10px;
  display:flex;
  gap: 0px;
  flex-wrap: wrap;
}

.tagrow{
  display:flex;
  flex-wrap: wrap;
  gap: 0px;
  margin-top: 10px;
}

.tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  border-radius: var(--radius-lg);
  padding: 8px 12px;
  border: 0;
  background: var(--surface-2);
  font-weight: 900;
  font-size: 13px;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}

.tag b{
  color: var(--text);
  font-weight: 950;
}

.notice{
  padding: 12px 12px;
}

.notice strong{
  font-weight: 950;
}

.linklist{
  display:grid;
  gap: 8px;
  margin-top: 10px;
}

.linklist a{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-radius: var(--radius);
  transition: transform .14s ease, box-shadow .14s ease, filter .14s ease;
}

.linklist a:hover{
  transform: perspective(900px) translateY(-2px) scale(1.01) rotateX(1deg);
}

.linklist a span{
  color: var(--subtle);
  font-size: 13px;
  white-space: nowrap;
}

@supports (color: color-mix(in srgb, #000 50%, #fff)){
  .topbar,
  .header,
  .pageHeader,
  header.siteHeader,
  header.topbar{
    background: var(--accent);
  }
}

.inputwrap{
  position:relative;
  display:flex;
  align-items:center;
}

.input--withbtn{
  padding-right:46px;
}

.iconbtn{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: var(--radius);
  border:0;
  background: var(--surface-2);
  color: color-mix(in srgb, var(--text) 72%, var(--muted));
  cursor:pointer;
  transition:background .14s ease, transform .14s ease, box-shadow .14s ease, filter .14s ease;
  -webkit-tap-highlight-color:transparent;
  box-shadow: var(--shadow-sm);
}

.iconbtn:hover{
  transform: translateY(-50%) translateY(-1px) perspective(900px) rotateX(1deg);
  box-shadow: var(--shadow);
}

.iconbtn:active{
  transform:translateY(-50%) scale(.98);
}

.iconbtn:focus{
  outline:none;
}

.iconbtn:focus-visible{
  outline: none;
  box-shadow:
    inset 0 -3px 0 var(--accent),
    var(--shadow);
}

.iconbtn svg{
  display:block;
}

@media (max-width:520px){
  .input--withbtn{ padding-right:50px; }
  .iconbtn{ right:8px; width:36px; height:36px; border-radius:var(--radius); }
}

@media (prefers-reduced-motion: reduce){
  .card,
  .sidecard,
  .linklist a,
  .btn,
  .chip,
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea,
  select{
    transition: none;
  }
  .card::after,
  .sidecard::after,
  .linklist a::after,
  .hero::after,
  .notice::after,
  .quote::after,
  .comment::after,
  .btn::after,
  .chip::after{
    animation: none;
  }
}

body::before{
  opacity: 1;
  background-image: none;
  background-color: var(--bg);
}

.logo-cube-slot{
  display:flex;
  justify-content:center;
  margin: 12px 0 8px 0;
  padding: 6px 40px;
}

.button3d{
  --h: 80px;
  --w: 220px;

  width: var(--w);
  height: var(--h);
  display:block;
  position:relative;

  perspective: 1000px;
  transform-style: preserve-3d;
  text-decoration:none;

  animation: cube-wiggle 7s ease-in-out infinite;
}

.button3d_side{
  position:absolute;
  width:100%;
  height:100%;
  box-sizing:border-box;

  background: transparent !important;
  border: 0;
  border-radius: var(--radius);
  box-shadow: none !important;

  backface-visibility: visible;

  line-height: var(--h);
  text-align:center;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: .4px;
  color:#fff;
}

.button3d_side::before,
.button3d_side::after{
  content:none !important;
}

.button3d_front{  transform: translateZ(calc(var(--h) / 2)); }
.button3d_back{   transform: rotateY(-180deg) translateZ(calc(var(--h) / 2)); }

.button3d_right{
  width: var(--h);
  transform: rotateY(90deg) translateZ(calc(var(--w) - var(--h) / 2));
}
.button3d_left{
  width: var(--h);
  transform: rotateY(-90deg) translateZ(calc(var(--h) / 2));
}

.button3d_top{    transform: rotateX(90deg)  translateZ(calc(var(--h) / 2)); }
.button3d_bottom{ transform: rotateX(-90deg) translateZ(calc(var(--h) / 2)); }

.button3d_front{
  background: var(--accent) !important;
  color:#fff;
  box-shadow: 0 28px 70px rgba(0,0,0,.18) !important;
}

.button3d_back{
  background: color-mix(in srgb, var(--accent) 78%, #000 0%) !important;
  color:#fff;
}

.button3d_left,
.button3d_right,
.button3d_top,
.button3d_bottom{
  background: color-mix(in srgb, var(--accent) 72%, #000 0%) !important;
  color:#fff;
  opacity: .92;
}

@keyframes cube-wiggle{
0%   { transform: rotateX(10deg) rotateY(-11deg); }
25%  { transform: rotateX(6deg)  rotateY(-6deg); }
50%  { transform: rotateX(10deg) rotateY(11deg); }
75%  { transform: rotateX(14deg) rotateY(6deg); }
100% { transform: rotateX(10deg) rotateY(-11deg); }
}

@media (prefers-reduced-motion: reduce){
  .button3d{ animation:none; }
}

@media (max-width:520px){
  .button3d{ --w: 340px; --h: 160px; }
  .button3d_side{ line-height: var(--h); font-size: 23px; }
}

@media (max-width: 720px){
  body{
    overflow-x: hidden;
  }

  .topbar .wrap{
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 10px 0 !important;
    flex-direction:row!important;
  }
  .topbar .wrap > div{
    width: 100% !important;
  }
  .topbar .wrap > div:first-child{
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .topbar .wrap > div:last-child{
    justify-content: flex-start !important;
    gap: 0px !important;
  }

  .topbar .wrap > div:first-child .nav{
    width: 100% !important;
  }

  .btn, .chip{
    max-width: 100%;
  }

  .meta{
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }
  .meta > span[style*="margin-left:auto"]{
    margin-left: 0 !important;
    width: 100%;
  }
  .meta > span[style*="margin-left:auto"] .btn{
    width: 100%;
  }
  .meta .stat{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .grid > article.card img{
    height: 190px !important;
    border-radius: var(--radius) !important;
  }

  .logo-cube-slot{
    padding: 6px 0 !important;
    margin: 10px 0 6px 0 !important;
  }
  .button3d{
    width: min(var(--w), 100%) !important;
  }

  .card__title,
  .feedcard__title,
  .card__text,
  .post__text{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .page{
    padding-bottom: calc(74px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 520px){
  :root{
    --body: 15px;
    --small: 12px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea,
  select{
    font-size: 16px !important;
  }

  .grid > article.card img{
    height: 170px !important;
    border-radius: var(--radius) !important;
  }

  .nav__link{
    padding: 10px 13px;
  }
  .pill{
    padding: 7px 11px;
  }
  .chip{
    padding: 10px 12px;
  }

  .topbar .wrap > div:last-child{
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .topbar .wrap > div:last-child::-webkit-scrollbar{
    height: 0;
  }
}

@media (max-width: 360px){
  .button3d{
    --w: calc(100vw - (var(--wrap-pad) * 2));
    --h: 100px;
  }
  .button3d_side{
    line-height: var(--h);
    font-size: 24px;
  }
}

@media (hover: none){
  .card:hover,
  .sidecard:hover,
  .linklist a:hover,
  .btn:hover,
  .chip:hover,
  .quote__link:hover{
    transform: none !important;
  }

  .card:hover::after,
  .sidecard:hover::after,
  .linklist a:hover::after,
  .btn:hover::after,
  .chip:hover::after,
  .quote__link:hover::after{
    opacity: 0 !important;
  }

  .thumb:hover img{
    transform: none !important;
  }
}

.sidecard .stack .card{
  padding: 14px;
}

.sidecard .stack .btn{
  height: 34px;
  padding: 0 14px;
  font-size: 13px;
}

.sidecard .stack .pill{
  padding: 7px 11px;
}

.logo_text{
  font-weight:900;
  font-size:37px;
}

.footer{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,.10), var(--shadow-sm);
  width:100dvw;
  height:auto;
  bottom:0;
  padding:20px;
  display:flex;
  flex-direction:row;
  justify-content:center;
  margin:0;
  height:clamp(100px, 15dvh, 30dvh);
  border-radius:0!important;
}

link:hover{
  transform:scale(1.1);
}
.informationHeader{
  width:100dvw;
  text-align:center;
}

.preFooter{
  content:"";
  display:block;
  height:clamp(100px, 25dvh, 30dvh);
}

.kampailogo{
  width: clamp(200px, 10dvw, 600px);
  height: clamp(100px, 5dvw, 300px);
}
.kampailogosmall{
  width: clamp(100px, 5.0dvw, 150px );
  height: clamp(50px, 2.5dvw, 75px);
}
.about{
  width:clamp(100px,60dvw,1000px);
  margin:auto;
}

.facebookCard{

  padding: 14px 16px 12px;
  border-radius: 14px;


  background: #fff;
  border: 1px solid #dadde1;          
  box-shadow: 0 1px 2px rgba(0,0,0,.06);


  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #050505;
}


.facebookCard > div:first-child > div:first-child > div:first-child{
  font-size: 15px;
  font-weight: 700;                    
  line-height: 1.2;
  letter-spacing: -0.1px;
}


.facebookCard .small{
  font-size: 12px;
  color: #65676b;
  line-height: 1.25;
}


.facebookCard > div:nth-child(2){
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #050505;
  white-space: pre-wrap;
  word-wrap: break-word;
}


.facebookCard .pill{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 34px;
  padding: 0 10px;

  border-radius: 999px;
  background: #f0f2f5;
  border: 1px solid rgba(0,0,0,.06);

  color: #65676b;
  font-weight: 700;
  cursor: pointer;
  user-select: none;

  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.facebookCard .pill span{
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-0.5px);
}

.facebookCard .pill:hover{
  background: #e4e6eb;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

.facebookCard .pill:active{
  transform: scale(0.98);
}


.facebookCard > div:first-child{
  gap: 12px !important;
}


.facebookCard > div:last-child{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e4e6eb;

  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;

  font-size: 13px;
  color: #65676b;
}

.facebookCard > div:last-child b{
  color: #050505;
  font-weight: 600;
}


body{
  background: #f0f2f5;
}


@media (max-width: 420px){
  .facebookCard{
    border-radius: 12px;
    padding: 12px 12px 10px;
  }
  .facebookCard .pill{
    height: 32px;
    min-width: 32px;
    padding: 0 8px;
  }
}

.fb-factcheck{
  margin-top: 12px;
  padding: 10px 12px;

  border-radius: 10px;
  background: #f7f8fa;
  border: 1px solid #e4e6eb;

  font-size: 13px;
  line-height: 1.4;
  padding: 14px 16px 12px;
  border-radius: 14px;


  background: #fff;
  border: 1px solid #dadde1;          
  box-shadow: 0 1px 2px rgba(0,0,0,.06);


  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #050505;
}

.fb-factcheck-title{
  font-weight: 600;
  color: #050505;
  margin-bottom: 4px;
  font-size: 15px;
}

.fb-factcheck-text{
  color: #65676b;
}

.fb-factcheck + div{
  margin-top: 12px;
}

.eventDate{
  text-align:right;
  width:100%;
  padding:5px;
  color:black;
}
.smallKampaiIcon{
  display:inline;
  line-height:32px;
}
.kampaiText{
  display: flex;
  align-items: center; 
  gap: 6px;  
}

.kampaiText{
  line-height:32px;
}

.page.page--chat{
  grid-template-columns: 1fr !important;
  padding: 18px 0 90px !important;
}

.disk-section{
  padding: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.disk-section__title{
  font-weight: 950;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.disk-popList{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}

.disk-popRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-left: 6px solid color-mix(in srgb, var(--accent) 80%, transparent);
  border-radius: var(--radius);
}

.disk-popName{
  font-weight: 950;
  letter-spacing: -0.02em;
}

.disk-two{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 980px){
  .disk-two{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.disk-box{
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
}

.disk-box::before{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width: 180px;
  height: 180px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  transform: rotate(18deg);
}

.disk-box__title{
  font-weight: 950;
  letter-spacing: -0.03em;
  font-size: 20px;
  position:relative;
}

.disk-actions{
  display:flex;
  justify-content:flex-end;
  gap: 0px;
  flex-wrap:wrap;
}

.disk-roomHero{
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  border-radius: var(--radius);
}

.disk-roomTitle{
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 26px;
  line-height: 1.15;
}

.disk-roomHeroActions{
  display:flex;
  gap: 0px;
  flex-wrap:wrap;
}

.disk-chatTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  padding: 12px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.disk-timer{
  display:flex;
  align-items:baseline;
  gap: 10px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.disk-chatStage{
  margin-top: 12px;
  display:grid;
  gap: 12px;
}

.disk-messages{
  height: 560px;
  overflow:auto;
  padding: 12px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

@media (max-width: 720px){
  .disk-messages{ height: 420px; }
}

.disk-msgRow{ display:flex; margin: 6px 0; }
.disk-msgRow--me{ justify-content:flex-end; }
.disk-msgRow--other{ justify-content:flex-start; }

.disk-bubble{
  max-width: min(720px, 92%);
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
  border-left: 6px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: var(--radius);
}

.disk-bubble--me{
  background: var(--accent);
  color:#fff;
  border-left: 6px solid rgba(255,255,255,.35);
}

.disk-who{
  font-size: 12px;
  font-weight: 900;
  opacity: .78;
  margin-bottom: 4px;
}

.disk-bubble--me .disk-who{ opacity: .9; }

.disk-text{
  white-space: pre-wrap;
  overflow-wrap:anywhere;
  word-break: break-word;
  line-height: 1.55;
}

.disk-compose{
  padding: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.disk-input{ min-height: 90px; }

.disk-check{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  user-select:none;
  border-radius: var(--radius);
}

.disk-check__box{
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  border: 2px solid color-mix(in srgb, var(--text) 18%, transparent);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display:inline-grid;
  place-items:center;
  cursor:pointer;
  transform: translateY(0.5px);
}

.disk-check__box::after{
  content:"";
  width: 12px;
  height: 12px;
  transform: scale(0);
  transition: transform .12s ease;
  background: var(--accent);
  border-radius: 4px;
}

.disk-check__box:checked{
  border-color: color-mix(in srgb, var(--accent) 80%, transparent);
}

.disk-check__box:checked::after{
  transform: scale(1);
}

.disk-check__label{
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor:pointer;
}

/* limit select */
.disk-select{
  position:relative;
  display:flex;
  align-items:center;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.disk-select__native{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  outline:0;
  background: transparent;
  width:100%;
  padding: 12px 42px 12px 12px;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 15px;
  cursor:pointer;
}

.disk-select__chev{
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events:none;
  font-weight: 950;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
}

.disk-composeMeta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 8px;
}

.disk-count{
  font-weight: 950;
  letter-spacing: -0.01em;
  padding: 6px 10px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.disk-count--over{
  background: color-mix(in srgb, var(--danger) 18%, var(--surface));
  color: var(--danger);
}


.page.page--ovchat{
  grid-template-columns: 1fr !important;
  padding: 18px 0 90px !important;
}

.ovdisk-section{
  padding: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.ovdisk-section__title{
  font-weight: 950;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.ovdisk-popList{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}

.ovdisk-popRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-left: 6px solid color-mix(in srgb, var(--accent) 80%, transparent);
  border-radius: var(--radius);
}

.ovdisk-popName{
  font-weight: 950;
  letter-spacing: -0.02em;
}

.ovdisk-two{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 980px){
  .ovdisk-two{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.ovdisk-box{
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position:relative;
  overflow:hidden;
  border-radius: var(--radius);
}

.ovdisk-box::before{
  content:"";
  position:absolute;
  inset:-40px -60px auto auto;
  width: 180px;
  height: 180px;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  transform: rotate(18deg);
}

.ovdisk-box__title{
  font-weight: 950;
  letter-spacing: -0.03em;
  font-size: 20px;
  position:relative;
}

.ovdisk-actions{
  display:flex;
  justify-content:flex-end;
  gap: 0px;
  flex-wrap:wrap;
}

.ovdisk-roomHero{
  padding: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  border-radius: var(--radius);
}

.ovdisk-roomTitle{
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: 26px;
  line-height: 1.15;
}

.ovdisk-roomHeroActions{
  display:flex;
  gap: 0px;
  flex-wrap:wrap;
}

.ovdisk-chatTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  padding: 12px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.ovdisk-timer{
  display:flex;
  align-items:baseline;
  gap: 10px;
  padding: 8px 10px;
  background: color-mix(in srgb, var(--accent) 10%, var(--surface));
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.ovdisk-chatStage{
  margin-top: 12px;
  display:grid;
  gap: 12px;
}

.ovdisk-messages{
  height: 560px;
  overflow:auto;
  padding: 12px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

@media (max-width: 720px){
  .ovdisk-messages{ height: 420px; }
}

.ovdisk-msgRow{ display:flex; margin: 6px 0; }
.ovdisk-msgRow--me{ justify-content:flex-end; }
.ovdisk-msgRow--other{ justify-content:flex-start; }

.ovdisk-bubble{
  max-width: min(720px, 92%);
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
  border-left: 6px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: var(--radius);
}

.ovdisk-bubble--me{
  background: var(--accent);
  color:#fff;
  border-left: 6px solid rgba(255,255,255,.35);
}

.ovdisk-who{
  font-size: 12px;
  font-weight: 900;
  opacity: .78;
  margin-bottom: 4px;
}

.ovdisk-bubble--me .ovdisk-who{ opacity: .9; }

.ovdisk-text{
  white-space: pre-wrap;
  overflow-wrap:anywhere;
  word-break: break-word;
  line-height: 1.55;
}

.ovdisk-compose{
  padding: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.ovdisk-input{ min-height: 90px; }

.ovdisk-check{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  user-select:none;
  border-radius: var(--radius);
}

.ovdisk-check__box{
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  border: 2px solid color-mix(in srgb, var(--text) 18%, transparent);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display:inline-grid;
  place-items:center;
  cursor:pointer;
  transform: translateY(0.5px);
}

.ovdisk-check__box::after{
  content:"";
  width: 12px;
  height: 12px;
  transform: scale(0);
  transition: transform .12s ease;
  background: var(--accent);
  border-radius: 4px;
}

.ovdisk-check__box:checked{
  border-color: color-mix(in srgb, var(--accent) 80%, transparent);
}

.ovdisk-check__box:checked::after{
  transform: scale(1);
}

.ovdisk-check__label{
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor:pointer;
}

/* limit select */
.ovdisk-select{
  position:relative;
  display:flex;
  align-items:center;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.ovdisk-select__native{
  appearance:none;
  -webkit-appearance:none;
  border:0;
  outline:0;
  background: transparent;
  width:100%;
  padding: 12px 42px 12px 12px;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 15px;
  cursor:pointer;
}

.ovdisk-select__chev{
  position:absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events:none;
  font-weight: 950;
  color: color-mix(in srgb, var(--text) 70%, var(--muted));
}

.ovdisk-composeMeta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-top: 8px;
}

.ovdisk-count{
  font-weight: 950;
  letter-spacing: -0.01em;
  padding: 6px 10px;
  background: var(--surface-2);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}

.ovdisk-count--over{
  background: color-mix(in srgb, var(--danger) 18%, var(--surface));
  color: var(--danger);
}

.ovdisk-fullrow{
  grid-column: 1 / -1;
}
.wide-button{
  width:100%;
}

html.chatRoomHtml,
body.chatRoomBody{
  height: 100%;
  overflow: hidden;
}

body.chatRoomBody{ --topbar-h: 76px; }
@media (max-width: 720px){ body.chatRoomBody{ --topbar-h: 118px; } }

body.chatRoomBody .wrap.page.page--chat{
  height: calc(100dvh - var(--topbar-h) - env(safe-area-inset-top));
  padding: 14px 0 !important;
  overflow: hidden;
  display: flex;
}

body.chatRoomBody .wrap.page.page--chat > main{
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

body.chatRoomBody #content{
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

body.chatRoomBody .disk-section,
body.chatRoomBody #gate,
body.chatRoomBody #downGate{
  overflow: auto;
  max-height: 100%;
}

body.chatRoomBody #chat{
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

body.chatRoomBody .disk-chatStage{
  flex: 1;
  min-height: 0;
  display: flex !important;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

body.chatRoomBody .disk-messages{
  flex: 1;
  min-height: 0;
  height: auto !important;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

body.chatRoomBody .disk-compose{
  flex: 0 0 auto;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

@media (max-width: 520px){
  body.chatRoomBody .wrap.page.page--chat{ padding: 10px 0 !important; }
  body.chatRoomBody .disk-roomTitle{ font-size: 22px; }
  body.chatRoomBody .disk-input{ min-height: 72px; }
}

.chatRoomBody .page{
  width:100dvw;
}

@media (max-width: 720px){
  .topbar .wrap{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .topbar .wrap > div:first-child{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .topbar .wrap > div:first-child .brand{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .topbar .wrap > div:first-child .brand img.kampailogosmall{
    width: min(70vw, 150px) !important;
    height: auto !important;
    display: block !important;
  }

  .topbar .wrap > div:first-child .nav{
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 6px !important;
  }

  .topbar .wrap > div:first-child .nav__link{
    width: 100% !important;
    justify-content: flex-start !important;
    padding: 12px 14px !important;
    border-radius: var(--radius) !important;
    background: rgba(255,255,255,.08);
  }

  .topbar .wrap > div:last-child{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 8px !important;
  }

  .topbar .wrap > div:last-child .btn{
    width: 100% !important;
    justify-content: center !important;
  }
}

.logo-cube-slot{
  display:flex;
  justify-content:center;
  align-items:center;
  width:100%;
}

.logo-cube-slot .kampailogo{
  width: min(70vw, 150px);
  height: auto;
  display:block;
}

@media (max-width: 720px){
  .logo-cube-slot{
    padding: 6px 0 !important;
    margin: 10px 0 6px 0 !important;
  }

  .logo-cube-slot .kampailogo{
    width: min(70vw, 150px);
    height: auto;
  }
}

html,body{
  height:100%;
}

body{
  min-height: 100dvh;
  display:flex;
  flex-direction:column;
}
.socialMediaLogo{
  height:35px;
  width:35px;
}

.footerSocialMedia{
  width: 100%;
  height: auto;
  display:flex;
  padding: 22px max(var(--wrap-pad), 20px);
  background: var(--accent);
  color: #fff;
  border-radius:0!important;
  border:none;
  gap:30px;
  justify-content:center;
}
.footer{
  margin-top: auto;
  width: 100%;
  height: auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 28px;
  padding: 22px max(var(--wrap-pad), 20px);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 -2px 0 rgba(0,0,0,.10), var(--shadow-sm);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.footer > div{
  flex: 1 1 320px;
  min-width: 0;
}

.footer p{
  margin: 0 0 10px 0;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.footerList{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 8px;
}

.footerItem{
  margin: 0;
  color: rgba(255,255,255,.88);
  line-height: 1.5;
}

.footer a{
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.footer a:hover{
  color: rgba(255,255,255,.92);
}

@media (max-width: 720px){
  .footer{
    flex-direction: column;
    gap: 18px;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    border-radius:0!important;
  }

  .footer > div{
    flex: 1 1 auto;
    border-radius:0!important;
    width: 100%;
  }

  .footer p{
    margin-bottom: 8px;
    font-size: 15px;
  }

  .footerItem{
    font-size: 14px;
  }
}

html,body{
  height:100%;
}

body{
  min-height: 100dvh;
  display:flex;
  flex-direction:column;
}

.footer{
  margin-top:auto;
  width:100%;
  height:auto;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:48px;
  padding:22px 20px;
  background: var(--accent);
  color:#fff;
  box-shadow: 0 -2px 0 rgba(0,0,0,.10), var(--shadow-sm);
}

.footer > div{
  flex:0 1 420px;
}

.footer p{
  margin:0 0 10px 0;
  font-weight:950;
  letter-spacing:-0.01em;
  text-align:left;
}

.footerList{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

.footerItem{
  margin:0;
  color:rgba(255,255,255,.88);
  line-height:1.5;
}

.footer a{
  color:#fff;
  text-decoration:underline;
  text-decoration-thickness:2px;
  text-underline-offset:3px;
}

.footer a:hover{
  color:rgba(255,255,255,.92);
}

@media (max-width: 720px){
  .footer{
    flex-direction:column;
    gap:18px;
    padding:18px 16px calc(18px + env(safe-area-inset-bottom));
    align-items:stretch;
  }

  .footer > div{
    flex:1 1 auto;
    width:100%;
  }

  .footer p{
    margin-bottom:8px;
    font-size:15px;
  }

  .footerItem{
    font-size:14px;
  }
}

@media (max-width: 720px){
  .page{
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 12px;
  }

  .wrap{
    width: calc(100% - 24px);
  }

  .grid{
    gap: 12px;
  }

  .card{
    padding: 14px;
    border-radius: var(--radius-lg);
  }

  .card > *{
    min-width: 0;
  }

  .card .btn,
  .card .chip{
    width: 100%;
    justify-content: center;
  }

  .card .pill{
    border-radius: 999px;
  }

  .card .tagrow,
  .card .hero__actions,
  .card .actions-row,
  .actions-row,
  .actions-row__right{
    width: 100%;
  }

  .actions-row{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .actions-row__stats{
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .actions-row__right{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .post__header,
  .feedcard__top,
  .comment__top,
  .disk-chatTop{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .post__header > * ,
  .feedcard__top > * ,
  .comment__top > * ,
  .disk-chatTop > *{
    width: 100%;
  }

  .post__text,
  .feedcard__snippet{
    font-size: 15px;
    line-height: 1.7;
  }

  .thumb{
    border-radius: var(--radius-lg);
  }
}

@media (max-width: 720px){
  html, body{
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .topbar,
  .header,
  .pageHeader,
  header.siteHeader,
  header.topbar{
    position: static !important;
    top: auto !important;
    border-radius: 0 !important;
  }

  .topbar .wrap,
  .header .wrap,
  .pageHeader .wrap,
  header.siteHeader .wrap,
  header.topbar .wrap{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    border-radius: 0 !important;
    box-sizing: border-box;
  }

  .wrap.page{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 12px !important;
    box-sizing: border-box;
  }

  .page{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    grid-auto-rows: auto;
  }

  main,
  .grid{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .card,
  article.card{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
    box-sizing: border-box;
  }

  .card *{
    min-width: 0 !important;
    max-width: 100%;
  }

  .card,
  .card *{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .card .small{
    min-width: 0 !important;
  }

  .btn,
  .chip{
    max-width: 100%;
  }

  .logo-cube-slot{
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }

  .preFooter{
    height: 0 !important;
  }
}


@media (max-width: 720px){
  .card{
    text-align: left;
  }

  .card > div{
    justify-content: center !important;
  }

  .card .small,
  .card .muted{
    text-align: left !important;
  }
  .popUpButton{
    width:100%;

  }
  .card .btn,
  .card .btn.btn--primary,
  .card .chip,
  .card .pill{
    width: 100% !important;
    justify-content: center !important;
  }

  .card span[style*="margin-left:auto"]{
    margin-left: 0 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }

  .card div[style*="border-top"]{
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .card div[style*="border-top"] > span{
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .card div[style*="border-top"] > span:not([style*="margin-left:auto"]){
    justify-content: flex-start !important;
  }

  .card div[style*="display:flex"]{
    justify-content: center !important;
  }

  .card div[style*="display:flex"] > div:first-child{
    text-align: left !important;
    width: 100%;
  }
}
.googleLogo{
  width:20px;
  height:20px;

}

@media (prefers-color-scheme: dark){
  :root{ ... }
}

.chronological-event{
  background: #ffffff;
  border: 1px solid #e4e6eb;
}

.avatar{
  width:60px;
  height:60px;
  border-radius:10px;
  object-fit:cover;
  border:1px solid #e5e7eb;
  box-shadow:var(--shadow-sm);
  background:var(--surface-2);
}
.avatar--sm{
  width:50px;
  height:50px;
}
.infoIcon{
  width:20px;
  height:20px;
  display:inline;
  border-radius:0;
}

.card{
  height:auto!important;
}
.fade-text {
  line-height: 1.6;
  max-height: 5em;      
  overflow: hidden;

  -webkit-mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 0%,
    transparent 100%
    );
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black 0%,
    transparent 100%
    );
}

.mediaText{
  color:#000000!important;
  font-size:20px!important;
}
.disk-sendBtn--locked,
.disk-sendBtn--locked:hover {
  opacity: .65;
  cursor: not-allowed;
  filter: saturate(.75);
}

.disk-typing {
  margin: 8px 0 4px;
  font-size: 13px;
  opacity: .85;
}

.disk-sysRow {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.disk-sysBubble {
  font-size: 12px;
  line-height: 1.25;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  opacity: .9;
  color: #777777;
}

.disk-usersWrap {
  position: relative;
}

.disk-usersPanel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  max-height: 220px;
  overflow: auto;
  z-index: 20;
  border-radius: 12px;
  padding: 8px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.disk-userItem {
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 14px;
  word-break: break-word;
}

.disk-userItem + .disk-userItem {
  margin-top: 4px;
  color: black;
  background-color:white;
}

.disk-userItem:hover {
  background: rgba(255,255,255,.05);
}
.chronPreviewCard{
  background: linear-gradient(180deg, var(--surface, #fff), var(--surface-2, #f8fafc));
}
.chronPreviewCard__snippet{
  opacity: .92;
  filter: blur(.25px);
  line-height: 1.55;
}

.chronPageBody{
  background: #eef2f3;
}

.chronPageMain{
  width: min(980px, 100%);
  margin: 0 auto;
}

.chronPageTimelineShell{
  background: #f3f4f6;
}

.chronTimeline{
  position: relative;
  padding: 8px 0 10px;
}
#miniUsersList{
  color: black;
  background-color:white;
}

.chronTimeline__spine{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  background: #166534; /* dark green */
  border-radius: 999px; /* pill-shaped ends */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.chronTimeline__row{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) 104px minmax(0,1fr);
  gap: 14px;
  align-items: center;
  margin: 0 0 16px 0;
  min-height: 88px;
}

.chronTimeline__mid{
  grid-column: 2;
  position: relative;
  min-height: 48px;
  height: 100%;
}

.chronTimeline__row--left .chronTimeline__cardSlot{ grid-column: 1; }
.chronTimeline__row--right .chronTimeline__cardSlot{ grid-column: 3; }

.chronTimeline__line{
  position: absolute;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: #166534; /* dark green */
  border-radius: 999px;
}

.chronTimeline__row--left .chronTimeline__line{
  left: 14px;
  right: 50%;
}

.chronTimeline__row--right .chronTimeline__line{
  left: 50%;
  right: 14px;
}

.chronTimeline__dot{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #1e3a8a; 
  border: 2px solid #e5e7eb;
  box-sizing: border-box;
}

.chronTimeline__card{
  display: block;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  background: linear-gradient(180deg, var(--surface, #fff), var(--surface-2, #f8fafc));
  transition: transform .12s ease, box-shadow .12s ease;
}

.chronTimeline__card:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.chronTimeline__date{
  opacity: .9;
}

.chronTimeline__title{
  margin-top: 8px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.chronTimeline__summary{
  margin-top: 10px;
  line-height: 1.6;
  color: inherit;
  opacity: .95;
  word-break: break-word;
}

@media (max-width: 900px){
  .chronTimeline__spine{
    left: 18px;
    transform: none;
    width: 12px;
  }

  .chronTimeline__row{
    grid-template-columns: 40px minmax(0,1fr);
    gap: 12px;
    min-height: 72px;
  }

  .chronTimeline__mid{
    grid-column: 1;
  }

  .chronTimeline__cardSlot{
    grid-column: 2 !important;
  }

  .chronTimeline__line{
    left: 18px !important;
    right: auto !important;
    width: 22px;
  }

  .chronTimeline__dot{
    left: 18px;
  }
}

body.chronologijaBody{
  background:#edf2f0;
}

.chronPageWrap{
  max-width: 1080px;
}

.chronIntroCard{
  background: linear-gradient(180deg,#f7faf9,#eef3f1);
  padding:20px;
}

.chronPageTitle{
  display:flex;
  align-items:center;
  gap:8px;
  line-height:1.15;
  margin:0;
  font-size:33px;
}

.chronPageCount{
  margin-top:10px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1.2;
}

.chronTimeline{
  position:relative;
  padding: 6px 0 4px;
}

.chronTimeline__spine{
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:16px;
  background:#166534;
  border-radius:999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.chronTimeline__item{
  position:relative;
  margin: 0 0 18px 0;
}

.chronTimeline__dateBig{
  text-align:center;
  margin: 0 0 8px 0;
  font-size:24px;
  line-height:1.15;
  font-weight:950;
  letter-spacing:-.03em;
  color:#0f172a;
}

.chronTimeline__row{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) 110px minmax(0,1fr);
  gap:14px;
  align-items:center;
}

.chronTimeline__row--left .chronTimeline__cardSlot{ grid-column:1; }
.chronTimeline__row--right .chronTimeline__cardSlot{ grid-column:3; }

.chronTimeline__mid{
  grid-column:2;
  position:relative;
  min-height:44px;
  height:100%;
}

.chronTimeline__line{
  position:absolute;
  top:50%;
  height:3px;
  background:#166534;
  border-radius:999px;
  transform:translateY(-50%);
}

.chronTimeline__row--left .chronTimeline__line{
  left:16px;
  right:50%;
}

.chronTimeline__row--right .chronTimeline__line{
  left:50%;
  right:16px;
}

.chronTimeline__dot{
  position:absolute;
  top:50%;
  left:50%;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#1e3a8a;
  border:2px solid #e5e7eb;
  transform:translate(-50%,-50%);
  box-sizing:border-box;
}

.chronTimeline__card{
  display:block;
  text-decoration:none;
  color:inherit;
  background: linear-gradient(180deg,#ffffff,#f8fafc);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
  border-radius:16px;
  transition: transform .12s ease, box-shadow .12s ease;
}
.chronTimeline__card:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.chronTimeline__image{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.chronTimeline__title{
  margin:12px 14px 0 14px;
  font-weight:900;
  font-size:18px;
  line-height:1.25;
  letter-spacing:-.01em;
}

.chronTimeline__summary{
  margin:10px 14px 14px 14px;
  line-height:1.55;
  color:#111827;
  opacity:.96;
  word-break:break-word;
}

@media (max-width: 900px){
  .chronTimeline__spine{
    left:18px;
    transform:none;
    width:12px;
  }

  .chronTimeline__dateBig{
    text-align:left;
    margin-left:44px;
    font-size:20px;
  }

  .chronTimeline__row{
    grid-template-columns:40px minmax(0,1fr);
    gap:12px;
  }

  .chronTimeline__mid{
    grid-column:1;
  }

  .chronTimeline__cardSlot{
    grid-column:2 !important;
  }

  .chronTimeline__line{
    left:18px !important;
    right:auto !important;
    width:22px;
  }

  .chronTimeline__dot{
    left:18px;
  }

  .chronTimeline__image{
    height:170px;
  }
}
.chronPreviewCard{
  display:grid !important;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 8px 14px;
  align-items:start;
}

.chronPreviewCard > :not(.chronPreviewCard__image){
  grid-column: 2;
  min-width: 0;
}

.chronPreviewCard__image{
  grid-column: 1;
  grid-row: 1 / span 5;
  width: 100%;
  height: 100%;
  min-height: 150px;
  max-height: 190px;
  object-fit: cover;
  margin: 0 !important;
}

.chronPreviewCard .eventDate{
  margin-top: 0 !important;
}

.chronPreviewCard__snippet{
  margin-top: 2px !important;
}

.chronTimeline__dateBig{
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  color: #64748b !important;
  margin: 0 0 6px 0 !important;
  text-align: left !important;
}

.chronTimeline__item:nth-child(odd) > .chronTimeline__dateBig{
  max-width: calc(50% - 68px);
  margin-right: auto !important;
}

.chronTimeline__item:nth-child(even) > .chronTimeline__dateBig{
  max-width: calc(50% - 68px);
  margin-left: calc(50% + 68px) !important;
}

.chronTimeline__card{
  display: grid !important;
  grid-template-columns: 180px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0 14px;
  align-items: start;
}

.chronTimeline__image{
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  min-height: 150px;
  max-height: 190px;
  object-fit: cover;
  border-bottom: none !important;
  border-right: 1px solid rgba(0,0,0,.06);
}

.chronTimeline__title,
.chronTimeline__summary{
  grid-column: 2;
  min-width: 0;
}

.chronTimeline__title{
  margin-left: 0 !important;
}

.chronTimeline__summary{
  margin-left: 0 !important;
  margin-top: 8px !important;
}

@media (max-width: 900px){
  .chronTimeline__dateBig{
    font-size: 12px !important;
    margin-left: 44px !important; 
    max-width: none !important;
  }

  .chronTimeline__item:nth-child(even) > .chronTimeline__dateBig{
    margin-left: 44px !important;
  }

  .chronTimeline__card{
    grid-template-columns: 120px minmax(0,1fr);
    gap: 0 10px;
  }

  .chronTimeline__image{
    min-height: 110px;
    max-height: 150px;
  }

  .chronPreviewCard{
    grid-template-columns: 120px minmax(0,1fr);
    gap: 8px 10px;
  }

  .chronPreviewCard__image{
    min-height: 110px;
    max-height: 150px;
  }
}
.avatarBox{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  align-items:stretch;
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.6);
}
.avatarBox__left{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  min-width:200px;
}
.avatarBox__preview{
  width:128px;
  height:128px;
  border-radius:26px;
  object-fit:cover;
  border:0px solid rgba(15,23,42,.10);
  box-shadow:0 14px 30px rgba(15,23,42,.15);
  background:#fff;
  margin:auto;
  transition:.1s;
}
.avatarBox__preview:hover{
  transform:scale(1.1);
  box-shadow:0 14px 40px rgba(15,23,42,.75);
  transition:.1s
}
.avatarBox__sub{
  max-width:260px;
  opacity:.85;
}
.avatarBox__right{
  min-width:280px;
  display:grid;
  gap:12px;
  align-content:start;
}
.avatarCtrl{
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.08);
  background:#fff;
}
.avatarCtrl__label{
  margin-bottom:8px;
  opacity:.9;
}
.avatarCtrl__row{
  display:grid;
  grid-template-columns:44px 1fr 44px;
  gap:40px;
  align-items:center;
}
.avatarArrow{
  width:100px;
  height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  margin:12px 12px;
}
.avatarArrow:disabled{
  opacity:.45;
  cursor:not-allowed;
}
.avatarValue{
  height:40px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(15,23,42,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  letter-spacing:.2px;
  user-select:none;
}
.avatarValue--blank{
  font-weight:400;
  letter-spacing:0;
}
.avatarHint{
  margin-top:8px;
  opacity:.7;
}

.skinBtns{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}
.skinBtn{
  border:0;
  border-radius:14px;
  padding:12px 12px;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(15,23,42,.10);
  transition:transform .08s ease, box-shadow .08s ease, filter .08s ease;
}
.skinBtn:active{transform:translateY(1px)}
.skinBtn.is-active{
  box-shadow:0 0 0 3px rgba(15,23,42,.10), 0 14px 26px rgba(15,23,42,.14);
  filter:saturate(1.1);
}
.skinBtn--blue{background:#2436ba}
.skinBtn--green{background:#36a54a}
.skinBtn--violet{background:#9c7a9d}

.skinMeta{
  margin-top:10px;
  display:flex;
  justify-content:flex-end;
}
.skinClear{
  border-radius:14px;
}
.avatarValue{
  display:none;
}
.avatarBox__right {
  flex: 0 0 auto;
}

.avatarCtrl {
  width: fit-content;
}

.avatarCtrl__row {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 12px;
  width: fit-content;
}

.avatarArrow {
  margin: 0;
}

.avatarEditor{
  width:fit-content;
}
.profileEditor{
  width:fit-content;
}

.disk-section-index{
  grid-column: span 2;   
}
#popularListIndex{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}

#popularListIndex .disk-popRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:8px;
  background:#fff;
}

#popularListIndex .disk-popRow:first-child{
  grid-column: span 2;
}

#popularListIndex .disk-popName{
  font-weight:700;
  margin-bottom:4px;
}
#popularList{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:12px;
}

#popularList .disk-popRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:8px;
  background:#fff;
}

#popularList .disk-popRow:first-child{
  grid-column: span 2;
}

#popularList .disk-popName{
  font-weight:700;
  margin-bottom:4px;
}
