
:root{
  --teal:#20c7ad;
  --teal2:#35d6bf;
  --tealDark:#119b86;

  --bg:#eef2f5;
  --ink:#0b1220;
  --muted:#5b6778;

  --card:#fff;
  --border:#dbe3ec;
  --shadow: 0 10px 24px rgba(16,24,34,.10);

  --radius: 18px;
  --shell: 1680px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #eaf1f4, #eef2f5);
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.v15-shell{
  width: min(var(--shell), calc(100% - 32px));
  margin: 0 auto;
}

.v15-lock{ overflow:hidden !important; }

/* HEADER */
.v15-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--teal), var(--teal2));
  box-shadow: 0 10px 22px rgba(16,24,34,.14);
}
.v15-header__row{
  height: 64px;
  display:flex;
  align-items:center;
  gap:14px;
}

/* burger */
.v15-burger{
  width:44px;height:44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.18);
  cursor:pointer;
  padding: 10px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap: 8px;
}
.v15-burger span{
  height:5px;
  border-radius:3px;
  background:#fff;
}

/* brand */
.v15-brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 240px;
}
.v15-brand__mark{
  width:34px;height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight: 950;
}
.v15-brand__name{
  color:#fff;
  font-weight: 950;
  letter-spacing: .2px;
  font-size: 18px;
}

/* search */
.v15-search{
  display:flex;
  align-items:center;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.22);
  overflow:hidden;
  margin-left:auto;
}
.v15-search input{
  border:0;
  outline:none;
  background:transparent;
  color:#fff;
  padding: 10px 12px 10px 14px;
  width: 460px;
  max-width: 55vw;
  font-size: 14px;
}
.v15-search input::placeholder{ color: rgba(255,255,255,.85); }
.v15-search button{
  border:0;
  cursor:pointer;
  height: 44px;
  padding: 0 16px;
  background: rgba(0,0,0,.18);
  color:#fff;
  font-weight: 950;
}

/* NAV with arrows */
.v15-nav{
  background: #ffffffea;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.22);
}
.v15-nav__row{
  height: 54px;
  display:flex;
  align-items:center;
  gap: 12px;
}
.v15-nav__link{
  display:inline-flex;
  align-items:center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  white-space: nowrap;
  color:#0b1220;
  background: #f2f6fa;
  border: 1px solid var(--border);
}
.v15-nav__link:hover{     background: linear-gradient(135deg, var(--tealDark), var(--teal));
    border-color: transparent;
    color: #fff; }
.v15-nav__link.is-active{
  background: linear-gradient(135deg, var(--tealDark), var(--teal));
  border-color: transparent;
  color:#fff;
}
.v15-nav__link--home{
  background:#0f172a;
  border-color:#0f172a;
  color:#fff;
}

.v15-nav__wrap{
  position: relative;
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.v15-nav__scroll{
  flex:1;
  display:flex;
  gap:10px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 4px;
}
.v15-nav__scroll::-webkit-scrollbar{ display:none; }

.v15-nav__btn{
  width:36px;height:36px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:#fff;
  box-shadow: 0 10px 18px rgba(16,24,34,.06);
  cursor:pointer;
  font-size: 18px;
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
}
.v15-nav__wrap.has-overflow .v15-nav__btn{
  opacity: 1;
  pointer-events: auto;
}
.v15-nav__btn:disabled{
  opacity:.35;
  cursor:default;
}

/* MAIN */
.v15-main{ padding: 18px 0 26px; }

/* WELCOME BAR above hero */
.v15-welcome{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 14px;
  display:flex;
  align-items:center;
  gap: 14px;
  justify-content:space-between;
  margin-bottom: 14px;
}
.v15-welcome__text{
  font-size: 16px;
  color:#0b1220;
}
.v15-search--hero{
  background:#f3f7fb;
  border: 1px solid var(--border);
}
.v15-search--hero input{
  color:#0b1220;
  width: 420px;
  max-width: 45vw;
}
.v15-search--hero input::placeholder{ color:#6b7280; }
.v15-search--hero button{
  background: linear-gradient(135deg, var(--tealDark), var(--teal));
}

/* PAGE GRID */
.v15-pagegrid{
  display:grid;
  grid-template-columns: 360px 1fr 360px;
  gap: 14px;
  align-items:start;
}
.v15-col{ min-width:0; }

.v15-pagegrid--inner{
  grid-template-columns: 1fr 360px;
}
.v15-col--span2{ min-width:0; }
.v15-col--span2{ grid-column: 1 / 2; }

/* CARDS */
.v15-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.v15-card__head{
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.v15-h2{
  margin:0;
  font-size: 14px;
  font-weight: 950;
  letter-spacing:.9px;
  text-transform: uppercase;
}

/* DARK card for top stories (your “black” panel) */
.v15-card--dark{
  background: linear-gradient(180deg, #111827, #0b1020);
  border-color: rgba(255,255,255,.08);
}
.v15-card__head--dark{
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.v15-h2--dark{ color:#fff; }

.v15-pad{ padding: 14px; }

/* LATEST list */
.v15-latest{ display:flex; flex-direction:column; }
.v15-latest__row{
  display:grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.v15-latest__row:hover{ background:#f6fbff; }
.v15-latest__row:last-child{ border-bottom:0; }

.v15-latest__img img{
  width:86px;height:62px;
  object-fit:cover;
  border-radius: 14px;
}
.v15-latest__title{
  font-weight: 950;
  font-size: 13px;
  line-height: 1.25;
  display:-webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.v15-latest__line{
  margin-top: 6px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size: 9px;
  color: var(--muted);
}
.v15-tag{
  display:inline-flex;
  align-items:center;
  height:22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(32,199,173,.12);
  border: 1px solid rgba(32,199,173,.25);
  color:#0c5f55;
  font-weight: 950;
  font-size: 9px;
}

/* TOP STORIES */
.v15-top{
  list-style:none;
  margin:0;
  padding: 10px 12px 12px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.v15-top__item{ margin:0; }
.v15-top__link{
  display:grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items:start;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.v15-top__link:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(32,199,173,.35);
}
.v15-top__num{
  width:34px;height:34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  background: rgba(32,199,173,.18);
  border: 1px solid rgba(32,199,173,.35);
  color:#bff7ee;
}
.v15-top__title{
  color:#fff;
  font-weight: 900;
  font-size: 13px;
  line-height: 1.25;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

.v15-stackGap{ height: 14px; }

/* HERO: big + 3 small on the side */
.v15-heroGrid{
  display:grid;
  /* grid-template-columns: 1.7fr 1fr; */
  gap: 12px;
  align-items:stretch;
}

.v15-hero{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:#111827;
  min-height: 520px;
}
.v15-hero__img img{
  width:100%;
  height: 100%;
  min-height: 520px;
  object-fit:cover;
}
.v15-hero__shade{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.78));
}
.v15-hero__cap{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 16px 16px 30px;
  color:#fff;
}
.v15-hero__kicker{
  font-weight: 900;
  font-size: 12px;
  opacity:.95;
}
.v15-hero__title{
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 950;
}

.v15-miniStack{
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.v15-mini{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:#fff;
  min-height: 160px;
}
.v15-mini__img img{
  width:100%;
  height: 160px;
  object-fit:cover;
}
.v15-mini__cap{
  padding: 10px 10px 12px;
}
.v15-mini__title{
  font-weight: 950;
  font-size: 14px;
  line-height: 1.2;
}
.v15-mini__meta{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 850;
}

/* MORE STORIES GRID (3 per row minimum on desktop) */
.v15-more{
  margin-top: 14px;
}
.v15-more__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin: 6px 0 10px;
}
.v15-more__title{
  margin:0;
  font-size: 20px;
  font-weight: 950;
}
.v15-grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.v15-cardMini{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.v15-cardMini__img img{
  width:100%;
  height: 190px;
  object-fit:cover;
}
.v15-cardMini__body{ padding: 12px; }
.v15-cardMini__title{
  font-weight: 950;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.v15-cardMini__meta{
  display:flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
  font-weight: 850;
  font-size: 12px;
}
.v15-pill{
  display:inline-flex;
  align-items:center;
  height:22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(32,199,173,.12);
  border: 1px solid rgba(32,199,173,.25);
  color:#0c5f55;
  font-weight: 950;
  font-size: 11px;
}

/* CATEGORY cards */
.v15-headCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px 14px;
  margin-bottom: 12px;
}
.v15-headCard__title{
  margin:0;
  font-size: 28px;
  font-weight: 950;
}
.v15-headCard__sub{
  margin:6px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.v15-catCard{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:#fff;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.v15-catCard__img img{
  width:100%;
  height: 180px;
  object-fit:cover;
}
.v15-catCard__body{ padding: 12px; }
.v15-catCard__title{
  font-weight: 950;
  font-size: 16px;
  line-height: 1.2;
}
.v15-catCard__snippet{
  margin-top: 8px;
  color:#233145;
  font-size: 13px;
  line-height: 1.55;
}
.v15-catCard__meta{
  margin-top: 10px;
  display:flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
  font-weight: 850;
  font-size: 12px;
}

/* PAGINATION */
.v15-pagination{
  margin: 14px 0 6px;
  display:flex;
  justify-content:center;
  gap: 8px;
}
.v15-page{
  min-width: 40px;
  height: 38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  border: 1px solid var(--border);
  background:#fff;
  font-weight: 950;
}
.v15-page:hover{ background:#f6fbff; }
.v15-page.is-active{
  background: linear-gradient(135deg, var(--tealDark), var(--teal));
  border-color: transparent;
  color:#fff;
}

/* ARTICLE */
.v15-article{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.v15-article__head{
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--border);
}
.v15-crumbs{
  display:flex;
  gap: 8px;
  align-items:center;
  color: var(--muted);
  font-weight: 850;
  font-size: 12px;
}
.v15-article__title{
  margin: 10px 0 6px;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 950;
}
.v15-article__meta{
  display:flex;
  gap: 10px;
  align-items:center;
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
}

.v15-article__hero img{
  width:100%;
  height: 420px;
  object-fit: cover;
}

.v15-article__body{
  padding: 14px;
  color:#162233;
  font-size: 16px;
  line-height: 1.9;
}
.v15-article__body h2,
.v15-article__body h3{
  margin: 18px 0 8px;
}
.v15-article__body p{ margin: 10px 0; }
.v15-article__body ul,
.v15-article__body ol{ padding-left: 20px; }

.v15-more--inline{ margin-top: 14px; }

/* SEARCH results */
.v15-result{
  display:grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(16,24,34,.06);
  margin-bottom: 12px;
}
.v15-result__img img{
  width:100%;
  height: 150px;
  object-fit: cover;
}
.v15-result__body{ padding: 12px; }
.v15-result__title{
  font-weight: 950;
  font-size: 18px;
  line-height: 1.15;
}
.v15-result__meta{
  margin-top: 10px;
  display:flex;
  gap:10px;
  align-items:center;
  color: var(--muted);
  font-weight: 850;
  font-size: 12px;
}
.v15-result__snippet{
  margin-top: 10px;
  color:#243145;
  font-size: 14px;
  line-height: 1.6;
}

.v15-subtle{ margin-top: 6px; color: var(--muted); font-weight: 850; }

.v15-tip{
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background:#f7fbff;
  font-weight: 850;
  color:#2a3548;
  margin-bottom: 10px;
}

/* Quick links */
.v15-quick{
  padding: 12px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.v15-quick__a{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background:#fbfdff;
  font-weight: 950;
}

/* FOOTER full width */
.v15-footer{
  margin-top: 18px;
  border-top: 1px solid var(--border);
  background:#fff;
}
.v15-footer__inner{
  padding: 14px 0 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:center;
  text-align:center;
}
.v15-footer__links{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  justify-content:center;
  color: var(--muted);
  font-weight: 900;
}
.v15-footer__copy{
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
}

/* DRAWER */
.v15-drawer{
  position:fixed;
  inset:0;
  z-index: 1000;
  pointer-events:none;
  opacity:0;
  transition: opacity .18s ease;
}
.v15-drawer.is-open{
  pointer-events:auto;
  opacity:1;
}
.v15-drawer__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.35);
}
.v15-drawer__panel{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width: min(420px, 86vw);
  background:#fff;
  border-left: 1px solid var(--border);
  box-shadow: -18px 0 40px rgba(16,24,34,.18);
  transform: translateX(110%);
  transition: transform .22s ease;
  padding: 14px;
  overflow:auto;
}
.v15-drawer.is-open .v15-drawer__panel{ transform: translateX(0); }

.v15-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.v15-drawer__title{ font-weight: 950; font-size: 16px; }
.v15-drawer__close{
  width:44px;height:44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background:#fff;
  cursor:pointer;
  font-size: 26px;
  line-height: 1;
}
.v15-search--mobile{
  margin-top: 12px;
  background:#f3f7fb;
  border: 1px solid var(--border);
}
.v15-search--mobile input{
  color:#0b1220;
  width: 100%;
  max-width:none;
}
.v15-search--mobile input::placeholder{ color:#6b7280; }
.v15-search--mobile button{
  background: linear-gradient(135deg, var(--tealDark), var(--teal));
}
.v15-drawer__links{
  margin-top: 12px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.v15-drawer__link{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 950;
  background:#fbfdff;
}

/* RESPONSIVE */
@media (max-width: 1180px){
  .v15-pagegrid{ grid-template-columns: 320px 1fr 320px; }
  .v15-search input{ width: 360px; }
  .v15-hero{ min-height: 480px; }
  .v15-hero__img img{ min-height: 480px; }
}
@media (max-width: 1024px){
  /* hide header search bar on mobile/tablet as requested */
  .v15-search--desktop{ display:none; }

  .v15-pagegrid{ grid-template-columns: 1fr; }
  .v15-heroGrid{ grid-template-columns: 1fr; }

  /* hero ABOVE latest/top (since order is left-center-right in HTML, we force order) */
  .v15-col--center{ order: 1; }
  .v15-col--left{ order: 2; }
  .v15-col--right{ order: 3; }

  .v15-hero{ min-height: 340px; }
  .v15-hero__img img{ min-height: 340px; }
  .v15-grid3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .v15-welcome{
    flex-direction:column;
    align-items:stretch;
  }
  .v15-search--hero input{ width: 100%; max-width: none; }
}
@media (max-width: 680px){
  .v15-brand__name{ display:none; }
  .v15-hero__title{ font-size: 26px; }
  .v15-grid3{ grid-template-columns: 1fr; }
  .v15-cardMini__img img{ height: 200px; }
  .v15-article__hero img{ height: 260px; }
  .v15-result{ grid-template-columns: 1fr; }
  .v15-result__img img{ height: 200px; }
}

.v15-search--page{
  margin: 14px 0 18px;
  margin-left: 0;            /* override header auto align */
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 18px rgba(16,24,34,.06);
}

.v15-search--page input{
  flex: 1;                   /* ✅ make input take full width */
  width: auto;               /* override fixed width */
  max-width: none;           /* override max-width: 55vw */
  color: var(--ink);
  padding: 14px 16px;
  font-size: 15px;
}

.v15-search--page input::placeholder{
  color: #6b7280;
}

.v15-search--page button{
  height: 48px;
  min-width: 140px;
  background: linear-gradient(135deg, var(--tealDark), var(--teal));
  color: #fff;
  font-weight: 950;
}
.v15-miniStack a:nth-child(2)
{
  display: none;
}
.v15-miniStack a:nth-child(1)
{
  display: none;
}
@media (max-width: 980px){

.v15-miniStack a:nth-child(2)
{
  display: block;
}
.v15-miniStack a:nth-child(1)
{
  display: block;
}
}