body { padding-top: var(--nav-h); }

.discover-hero {
  background: var(--inv-bg);
  padding: 40px 0 32px;
  transition: background .25s var(--ease);
}

.discover-title {
  font-family: var(--font-head);
  font-size: clamp(36px,5vw,64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--inv-text);
  transition: color .25s var(--ease);
}

.discover-sub {
  font-size: 14px;
  color: rgba(240,239,233,.4);
  font-family: var(--font-head);
  margin-top: 6px;
}

/* Sticky filter bar */
.filter-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: background .25s var(--ease);
}

.cat-tab {
  font-family: var(--font-head);
  font-size: 12px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 14px 18px;
  border: none; background: none;
  cursor: pointer;
  color: var(--text-3);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .15s;
  white-space: nowrap;
}
.cat-tab:hover { color: var(--text); }
.cat-tab.on { color: var(--text); border-bottom-color: var(--text); }
.cat-tab.on.t-gadgets { color: var(--blue); border-bottom-color: var(--blue); }
.cat-tab.on.t-cars    { color: var(--amber); border-bottom-color: var(--amber); }
.cat-tab.on.t-movies  { color: var(--violet); border-bottom-color: var(--violet); }
.cat-tab.on.t-jobs    { color: var(--green); border-bottom-color: var(--green); }
.cat-tab.on.t-ipos    { color: var(--teal); border-bottom-color: var(--teal); }

/* InShorts card */
.is-card {
      display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    cursor: pointer;
    color: var(--text);
    /* transition: opacity .15s; */
    text-decoration: none;
    color: inherit;
    align-items: start;
    justify-items: start;
}
/* .is-card:hover { opacity: 1; color: #000000; } */

.is-body { }

.is-title {
  font-family: var(--font-head);
  font-size: 19px; font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin: 8px 0 8px;
  display: block;
  text-decoration: none;
}

.is-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 14px;
  /* InShorts-style: max 60 words shown */
}
.is-text p {
  background-color: transparent !important;
}
.is-actions {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}

.is-read-btn {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: none; color: var(--text-2);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
}
.is-read-btn:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

.is-meta {
  font-family: var(--font-mono);
  font-size: 11px; color: var(--text-3);
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}

.is-thumb {
  height: 230px;
  width: 100%;
  border-radius: var(--r);
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px;
  align-self: start;
  border: 1px solid var(--border);
  transition: background .25s;
  margin-bottom: 15px;.is-thumb
}

/* Sidebar */
.sw {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 16px;
  transition: background .25s;
}
.sw-title {
  font-family: var(--font-head);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.sw-cd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: opacity .15s;
}
.sw-cd-item:last-child { border-bottom: none; }
.sw-cd-item:hover { opacity: .7; }
.sw-days {
  font-family: var(--font-mono);
  font-size: 22px; font-weight: 500;
  color: var(--red);
  min-width: 50px; text-align: right; line-height: 1;
}
.sw-label { font-family: var(--font-head); font-size: 12px; font-weight: 600; color: var(--text); line-height: 1.3; }
.sw-cat   { font-size: 11px; color: var(--text-3); margin-top: 2px; }

@media(max-width:767px){
  .is-card { grid-template-columns: 1fr; gap: 14px; }
  .is-thumb { height: 140px; width: 100%; }
}