/* ==========================================================================
   RizeDijital Haberler v0.49.9
   Liste, detay ve ana sayfadaki haber kartlarına özel, tamamen scoped katman.
   Başka modüllerin hero/container/profil/slider sınıflarını hedeflemez.
   ========================================================================== */

.hbr-html,
.hbr-body {
  max-width: 100%;
  overflow-x: visible;
  overflow-x: clip;
}

.hbr-body *,
.hbr-home-news * {
  box-sizing: border-box;
}

.hbr-shell {
  width: 100%;
  max-width: 1360px;
  min-width: 0;
  padding-inline: 20px;
  margin: 18px auto 48px;
}

.hbr-shell img {
  max-width: 100%;
}

.hbr-list-page,
.hbr-detail-page {
  background:
    radial-gradient(circle at 8% 12%, rgba(91, 104, 214, 0.075), transparent 24rem),
    radial-gradient(circle at 90% 34%, rgba(31, 164, 194, 0.065), transparent 28rem),
    var(--bg);
}

/*
 * Haber içeriği header ve ana navigasyondan sonra render edilir. Haber
 * bileşenlerinin oluşturduğu isolation/backdrop/sticky katmanları hiçbir
 * durumda menünün üzerine çıkamaz.
 */
.hbr-body > header,
.hbr-body > .mob-hdr {
  z-index: 1200;
}

.hbr-body > .nav-bar {
  z-index: 1190;
}

/* ── Ortak hero ─────────────────────────────────────────────────────────── */
.hbr-hero,
.hbr-detail-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 310px;
  min-height: 310px;
  overflow: hidden;
  border-radius: 30px;
  color: #fff;
  box-shadow: 0 22px 55px rgba(4, 48, 28, 0.18);
}

.hbr-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  align-items: center;
  padding: 42px 48px;
  background:
    radial-gradient(circle at 81% 10%, rgba(116, 221, 255, 0.28), transparent 25%),
    radial-gradient(circle at 98% 96%, rgba(190, 130, 255, 0.25), transparent 32%),
    linear-gradient(125deg, #101a3d 0%, #253f83 54%, #6752b5 100%);
  box-shadow: 0 24px 58px rgba(21, 31, 83, 0.24);
}

.hbr-hero::before,
.hbr-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(112deg, transparent 43%, rgba(255, 255, 255, 0.075) 43.2%, transparent 61%),
    repeating-linear-gradient(105deg, transparent 0 72px, rgba(255, 255, 255, 0.022) 73px 74px);
}

.hbr-hero::after,
.hbr-detail-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  right: -105px;
  top: -175px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.hbr-hero-copy,
.hbr-detail-hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.hbr-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 13px;
  padding: 6px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font: 800 11px/1.2 "Nunito", sans-serif;
  letter-spacing: 0.55px;
  white-space: nowrap;
}

.hbr-hero-live-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #7ce7ff;
  box-shadow: 0 0 0 5px rgba(124, 231, 255, 0.16);
  animation: hbr-live-pulse 1.8s ease-in-out infinite;
}

.hbr-hero h1 {
  max-width: 720px;
  margin: 0;
  font: 900 clamp(38px, 4.25vw, 58px)/1.03 "Poppins", sans-serif;
  letter-spacing: -2.2px;
  text-wrap: balance;
}

.hbr-hero-copy > p {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font: 600 15px/1.58 "Nunito", sans-serif;
}

.hbr-hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 19px;
}

.hbr-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  font: 800 12.5px/1 "Nunito", sans-serif;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.hbr-hero-btn:hover {
  transform: translateY(-2px);
}

.hbr-hero-btn-primary {
  border-color: #fff;
  background: #fff;
  color: #263f80;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.hbr-hero-btn-primary:hover {
  color: #263f80;
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.2);
}

.hbr-hero-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.hbr-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.19);
}

.hbr-hero-meta {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.76);
  font: 800 10.5px/1.2 "Nunito", sans-serif;
}

.hbr-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.hbr-hero-meta i {
  color: #8deaff;
}

/* ── Liste hero animasyon kompozisyonu ─────────────────────────────────── */
.hbr-hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
  height: 240px;
  z-index: 2;
}

.hbr-orbit {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  animation: hbr-orbit-spin 18s linear infinite;
}

.hbr-orbit-one {
  width: 330px;
  height: 190px;
  right: 4px;
  top: 20px;
  transform: rotate(-12deg);
}

.hbr-orbit-two {
  width: 235px;
  height: 235px;
  right: 48px;
  top: 1px;
  animation-duration: 24s;
  animation-direction: reverse;
}

.hbr-visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 24px 60px rgba(0, 32, 18, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hbr-visual-card-main {
  width: 270px;
  height: 168px;
  right: 45px;
  top: 36px;
  padding: 22px;
  border-radius: 25px;
  animation: hbr-card-float 4.8s ease-in-out infinite;
}

.hbr-visual-card-top,
.hbr-visual-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hbr-visual-card-top {
  font: 900 10px/1 "Nunito", sans-serif;
  letter-spacing: 0.7px;
}

.hbr-visual-card-top span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hbr-visual-card-top span i {
  color: #74f4ad;
  font-size: 6px;
  animation: hbr-live-pulse 1.8s ease-in-out infinite;
}

.hbr-visual-card-top > i {
  color: rgba(255, 255, 255, 0.78);
}

.hbr-visual-lines {
  display: grid;
  gap: 9px;
  margin: 24px 0 20px;
}

.hbr-visual-lines b {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.hbr-visual-lines b:nth-child(2) {
  width: 78%;
}

.hbr-visual-lines b:nth-child(3) {
  width: 55%;
  background: rgba(122, 246, 176, 0.45);
}

.hbr-visual-card-footer {
  color: rgba(255, 255, 255, 0.68);
  font: 800 9.5px/1 "Nunito", sans-serif;
}

.hbr-visual-card-small {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #fff;
  font-size: 20px;
}

.hbr-visual-card-left {
  left: 28px;
  top: 72px;
  animation: hbr-card-float 4.1s ease-in-out 0.45s infinite;
}

.hbr-visual-card-right {
  right: 0;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.88);
  color: #117249;
  animation: hbr-card-float 4.3s ease-in-out 0.8s infinite;
}

.hbr-float-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b4ff65;
  box-shadow: 0 0 18px rgba(180, 255, 101, 0.65);
  animation: hbr-dot-drift 4s ease-in-out infinite;
}

.hbr-dot-one { right: 30px; top: 28px; }
.hbr-dot-two { left: 92px; bottom: 12px; animation-delay: 0.8s; }
.hbr-dot-three { right: 105px; bottom: 1px; animation-delay: 1.6s; }

/* ── Liste düzeni ──────────────────────────────────────────────────────── */
.hbr-layout,
.hbr-detail-layout {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 346px;
  gap: 24px;
  align-items: start;
  min-width: 0;
}

.hbr-list-page .hbr-hero + .hbr-layout {
  margin-top: 18px;
}

.hbr-feed,
.hbr-article-card {
  min-width: 0;
}

.hbr-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 15px;
}

.hbr-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
  color: #138253;
  font: 900 10px/1.2 "Nunito", sans-serif;
  letter-spacing: 0.85px;
}

.hbr-section-head h2 {
  margin: 0;
  color: var(--text);
  font: 800 22px/1.25 "Poppins", sans-serif;
  letter-spacing: -0.45px;
}

.hbr-section-head p {
  margin: 3px 0 0;
  color: var(--text3);
  font: 600 12.5px/1.45 "Nunito", sans-serif;
}

.hbr-feed-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
  padding: 14px 15px;
  overflow: hidden;
  border: 1px solid rgba(71, 97, 177, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0, rgba(105, 192, 221, 0.11), transparent 42%),
    linear-gradient(125deg, var(--card), rgba(241, 245, 255, 0.92));
  box-shadow: 0 9px 27px rgba(33, 51, 106, 0.065);
}

.hbr-feed-head-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(103, 82, 181, 0.18);
  border-radius: 15px;
  background: linear-gradient(145deg, #eaf3ff, #eee9ff);
  color: #4f5ba4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

.hbr-feed-head-copy {
  min-width: 0;
}

.hbr-feed-head .hbr-section-kicker {
  color: #5661aa;
}

.hbr-feed-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid #bde8cf;
  border-radius: 999px;
  background: #effbf4;
  color: #14794b;
  font: 800 10px/1 "Nunito", sans-serif;
}

.hbr-feed-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #20aa68;
  box-shadow: 0 0 0 4px rgba(32, 170, 104, 0.13);
  animation: hbr-live-pulse 1.8s ease-in-out infinite;
}

.hbr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  min-width: 0;
}

.hbr-news-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 8px 27px rgba(10, 67, 39, 0.07);
  cursor: default;
  transform: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hbr-news-card:hover {
  border-color: rgba(25, 150, 91, 0.34);
  box-shadow: 0 16px 38px rgba(10, 67, 39, 0.12);
  transform: translateY(-4px);
}

.hbr-img-wrap {
  position: relative;
  overflow: hidden;
}

.hbr-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d9eee2;
}

.hbr-grid .hbr-news-card .hbr-card-media .nc-img {
  display: block;
  width: 100%;
  height: 100% !important;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hbr-news-card:hover .nc-img {
  transform: scale(1.045);
}

.hbr-news-card .nc-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 16px 17px 15px;
}

.hbr-news-card .nc-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 31px;
  margin-bottom: 8px;
}

.hbr-news-card .nc-cat,
.hbr-detail-badges .nc-cat {
  max-width: 65%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hbr-news-card .nc-title {
  display: -webkit-box;
  min-width: 0;
  margin: 0 0 8px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--text);
  font: 800 16px/1.38 "Poppins", sans-serif;
  letter-spacing: -0.22px;
}

.hbr-news-card .nc-title a {
  color: inherit;
}

.hbr-news-card .nc-title a:hover {
  color: #14804f;
}

.hbr-card-summary {
  display: -webkit-box;
  margin: 0 0 13px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--text3);
  font: 600 12.5px/1.5 "Nunito", sans-serif;
}

.hbr-news-card .nc-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--text3);
  font: 700 10.5px/1.3 "Nunito", sans-serif;
}

.hbr-news-card .nc-meta-left {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.hbr-news-card .nc-meta-left span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hbr-card-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: #137c4d;
  transition: 0.2s ease;
}

.hbr-card-arrow:hover {
  border-color: #167f50;
  background: #117347;
  color: #fff;
}

.hbr-bookmark-form {
  display: inline-flex;
  margin: 0;
}

.hbr-bookmark-btn {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--text3);
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s ease;
}

.hbr-bookmark-btn:hover,
.hbr-bookmark-btn.is-active {
  border-color: #b9e8cd;
  background: #eaf9f0;
  color: #0c7747;
}

.hbr-bookmark-btn.is-loading {
  pointer-events: none;
  opacity: 0.65;
}

.hbr-card-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #167f50;
  font: 800 9.5px/1 "Nunito", sans-serif;
}

.hbr-star,
.hbr-mini-badge {
  position: absolute;
  top: 11px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.17);
  font: 900 9px/1 "Nunito", sans-serif;
}

.hbr-star {
  left: 11px;
  background: rgba(224, 131, 15, 0.92);
}

.hbr-mini-badge {
  right: 11px;
  max-width: calc(100% - 22px);
  overflow: hidden;
  background: rgba(6, 72, 42, 0.9);
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.hbr-empty {
  display: flex;
  min-height: 240px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  padding: 35px 22px;
  border: 1px dashed #b9ddc8;
  border-radius: 22px;
  background: var(--card);
  color: var(--text3);
  text-align: center;
}

.hbr-empty > i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: #edf8f1;
  color: #168253;
  font-size: 23px;
}

.hbr-empty strong {
  color: var(--text);
  font: 800 18px/1.3 "Poppins", sans-serif;
}

.hbr-empty span {
  max-width: 520px;
  font: 600 12.5px/1.55 "Nunito", sans-serif;
}

.hbr-scroll-sentinel {
  min-height: 10px;
}

.hbr-scroll-loader,
.hbr-scroll-bitti {
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0 4px;
  color: var(--text3);
  text-align: center;
  font: 800 12px/1.4 "Nunito", sans-serif;
}

.hbr-scroll-loader:not([hidden]) {
  display: flex;
}

.hbr-scroll-bitti:not([hidden]) {
  display: flex;
}

.hbr-scroll-loader i,
.hbr-scroll-bitti i {
  color: #198654;
}

/* ── Sidebar ───────────────────────────────────────────────────────────── */
.hbr-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}

.hbr-sidebar > * {
  width: 100%;
  min-width: 0;
  min-height: 0;
  flex: 0 0 auto;
  align-self: auto;
}

.hbr-sidebar-sticky {
  position: sticky;
  z-index: 1;
  top: calc(var(--hdr-h, 68px) + 74px);
  align-self: start;
  max-height: calc(100vh - var(--hdr-h, 68px) - 90px);
  max-height: calc(100dvh - var(--hdr-h, 68px) - 90px);
  padding-right: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  isolation: isolate;
  scrollbar-gutter: stable;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}

.hbr-sidebar-sticky::-webkit-scrollbar {
  width: 3px;
}

.hbr-sidebar-sticky::-webkit-scrollbar-track {
  background: transparent;
}

.hbr-sidebar-sticky::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: transparent;
}

.hbr-sidebar-sticky:hover,
.hbr-sidebar-sticky:focus-within {
  scrollbar-color: rgba(65, 83, 142, 0.28) transparent;
}

.hbr-sidebar-sticky:hover::-webkit-scrollbar-thumb,
.hbr-sidebar-sticky:focus-within::-webkit-scrollbar-thumb {
  background: rgba(65, 83, 142, 0.28);
}

.hbr-side-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 9px 26px rgba(10, 67, 39, 0.065);
}

.hbr-side-head {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
}

.hbr-side-head > div {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font: 800 14px/1.25 "Poppins", sans-serif;
}

.hbr-side-head > div > i {
  color: #148250;
}

.hbr-side-head small,
.hbr-side-head > a {
  flex: 0 0 auto;
  color: var(--text3);
  font: 800 10px/1 "Nunito", sans-serif;
}

.hbr-side-head > a {
  color: #14794b;
}

.hbr-side-list {
  padding: 4px 14px 10px;
}

.hbr-side-item {
  display: grid;
  grid-template-columns: 25px 58px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}

.hbr-side-item:last-child {
  border-bottom: 0;
}

.hbr-side-rank {
  align-self: start;
  padding-top: 2px;
  color: #89a497;
  font: 900 11px/1 "Poppins", sans-serif;
}

.hbr-side-img {
  width: 58px;
  height: 58px;
  border-radius: 11px;
  object-fit: cover;
  background: #d9eee2;
}

.hbr-side-copy {
  min-width: 0;
}

.hbr-side-copy strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--text);
  font: 800 11.5px/1.38 "Nunito", sans-serif;
}

.hbr-side-copy small {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: var(--text3);
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 700 9.5px/1.2 "Nunito", sans-serif;
}

.hbr-side-item:hover .hbr-side-copy strong {
  color: #137c4d;
}

.hbr-side-empty {
  padding: 20px 4px 14px;
  color: var(--text3);
  text-align: center;
  font: 700 11.5px/1.4 "Nunito", sans-serif;
}

.hbr-breaking {
  position: relative;
  overflow: hidden;
  padding: 17px 18px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #b91328, #ec3d4f);
  box-shadow: 0 14px 32px rgba(176, 19, 38, 0.21);
  color: #fff;
}

.hbr-breaking::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -54px;
  top: -60px;
  border: 20px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.hbr-breaking-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font: 900 9.5px/1 "Nunito", sans-serif;
  letter-spacing: 0.7px;
}

.hbr-breaking-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
  animation: hbr-live-pulse 1.7s ease-in-out infinite;
}

.hbr-breaking p {
  position: relative;
  z-index: 1;
  margin: 0;
  font: 800 13px/1.43 "Nunito", sans-serif;
}

.hbr-source-list {
  display: grid;
  gap: 10px;
  padding: 13px 14px 15px;
}

.hbr-source-row {
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.hbr-source-icon {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 11px;
  background: #e9f5ff;
  color: #1976b9;
  font-size: 13px;
}

.hbr-source-icon.is-editor {
  background: #eaf8f0;
  color: #147e4f;
}

.hbr-source-copy {
  display: grid;
  min-width: 0;
  grid-template-columns: 1fr;
}

.hbr-source-copy strong {
  overflow: hidden;
  color: var(--text);
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 800 11.5px/1.2 "Nunito", sans-serif;
}

.hbr-source-copy small {
  margin-top: 2px;
  color: var(--text3);
  font: 600 9.5px/1.2 "Nunito", sans-serif;
}

.hbr-source-copy b {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--border);
}

.hbr-source-copy b::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 4px;
  border-radius: inherit;
  background: linear-gradient(90deg, #188a55, #52cd89);
  transform: scaleX(var(--hbr-pct, 0));
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.hbr-source-row em {
  color: var(--text3);
  font: 900 10px/1 "Nunito", sans-serif;
  font-style: normal;
}

.hbr-side-cat-list {
  display: grid;
  padding: 5px 14px 10px;
}

.hbr-side-cat-list a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text2);
  font: 800 11.5px/1.2 "Nunito", sans-serif;
}

.hbr-side-cat-list a:last-child {
  border-bottom: 0;
}

.hbr-side-cat-list a > i {
  color: #9aafa4;
  font-size: 9px;
}

.hbr-side-cat-list a:hover,
.hbr-side-cat-list a.active {
  color: #137c4d;
}

.hbr-side-cat-list a.active > i {
  color: #137c4d;
}

.hbr-ad-box {
  position: relative;
  overflow: hidden;
  padding: 23px 20px 20px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 95% 4%, rgba(139, 255, 190, 0.2), transparent 36%),
    linear-gradient(140deg, #073b25, #168557);
  box-shadow: 0 16px 35px rgba(8, 72, 43, 0.18);
  color: #fff;
}

.hbr-ad-box::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -85px;
  bottom: -90px;
  border: 22px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hbr-ad-box > i {
  margin: 19px 0 12px;
  color: #87f2b5;
  font-size: 22px;
}

.hbr-ad-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font: 800 8.5px/1 "Nunito", sans-serif;
}

.hbr-ad-box h2 {
  margin: 0 0 5px;
  color: #fff;
  font: 800 16px/1.3 "Poppins", sans-serif;
}

.hbr-ad-box p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.73);
  font: 600 11.5px/1.5 "Nunito", sans-serif;
}

.hbr-ad-box > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 11px;
  background: #fff;
  color: #0a6440;
  font: 900 10.5px/1 "Nunito", sans-serif;
}

.hbr-update-note {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--card);
  color: #168052;
}

.hbr-update-note > i {
  font-size: 14px;
}

.hbr-update-note span {
  display: grid;
  gap: 2px;
  color: var(--text3);
  font: 700 10px/1.2 "Nunito", sans-serif;
}

.hbr-update-note strong {
  color: var(--text2);
  font-size: 11px;
}

/* ── Haber detay navigasyonu ───────────────────────────────────────────── */
.hbr-mobile-reader-nav {
  display: none;
}

.hbr-operation-notice {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 18px 0 -4px;
  padding: 12px 14px;
  border: 1px solid #f1d49b;
  border-radius: 14px;
  background: #fff8e9;
  color: #79551b;
  font: 700 11.5px/1.45 "Nunito", sans-serif;
}

.hbr-operation-notice > i {
  flex: 0 0 auto;
  font-size: 15px;
}

.hbr-operation-notice strong {
  font-weight: 900;
}

.hbr-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  margin-bottom: 20px;
  padding: 42px 48px;
  background:
    radial-gradient(circle at 88% 10%, rgba(91, 238, 159, 0.18), transparent 28%),
    linear-gradient(125deg, #072c1e 0%, #0c5435 54%, #15915b 100%);
}

.hbr-detail-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.hbr-detail-rss-badge,
.hbr-detail-editor-badge {
  display: inline-flex;
  max-width: 250px;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 800 9.5px/1 "Nunito", sans-serif;
}

.hbr-detail-hero h1 {
  display: -webkit-box;
  max-width: 850px;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #fff;
  font: 900 clamp(32px, 3.35vw, 48px)/1.08 "Poppins", sans-serif;
  letter-spacing: -1.7px;
  text-wrap: balance;
}

.hbr-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 17px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font: 800 10.5px/1.2 "Nunito", sans-serif;
}

.hbr-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hbr-detail-meta i {
  color: #7cf0ad;
}

.hbr-detail-hero-art {
  position: relative;
  justify-self: end;
  width: min(100%, 370px);
  height: 230px;
}

.hbr-detail-news-device {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 230px;
  height: 164px;
  right: 48px;
  top: 32px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 25px 55px rgba(0, 27, 15, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: hbr-card-float 5s ease-in-out infinite;
}

.hbr-device-live {
  position: absolute;
  top: 16px;
  left: 17px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font: 900 8.5px/1 "Nunito", sans-serif;
  letter-spacing: 0.6px;
}

.hbr-device-live i {
  color: #76f5ad;
  font-size: 5px;
}

.hbr-device-icon {
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 40px;
}

.hbr-device-line {
  width: 65%;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
}

.hbr-device-line.is-short {
  width: 42%;
  margin-top: 8px;
  background: rgba(117, 244, 173, 0.42);
}

.hbr-detail-wave {
  position: absolute;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: hbr-orbit-spin 21s linear infinite;
}

.hbr-detail-wave-one {
  width: 330px;
  height: 200px;
  right: 0;
  top: 15px;
  transform: rotate(-13deg);
}

.hbr-detail-wave-two {
  width: 205px;
  height: 205px;
  right: 60px;
  top: 7px;
  animation-direction: reverse;
}

.hbr-detail-float {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 28, 16, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hbr-detail-float-one {
  left: 13px;
  top: 84px;
  animation: hbr-card-float 4.2s ease-in-out 0.5s infinite;
}

.hbr-detail-float-two {
  right: 0;
  bottom: 17px;
  background: rgba(255, 255, 255, 0.87);
  color: #137b4d;
  animation: hbr-card-float 4.7s ease-in-out 0.9s infinite;
}

/* ── Haber detay içeriği ───────────────────────────────────────────────── */
.hbr-detail-layout {
  grid-template-columns: minmax(0, 1fr) 346px;
}

.hbr-article-card {
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: var(--card);
  box-shadow: 0 12px 35px rgba(10, 67, 39, 0.07);
}

.hbr-article-heading {
  margin: -2px 0 22px;
  padding: 3px 3px 22px;
  border-bottom: 1px solid var(--border);
}

.hbr-article-heading .hbr-detail-badges {
  margin-bottom: 11px;
}

.hbr-article-heading .hbr-detail-rss-badge,
.hbr-article-heading .hbr-detail-editor-badge {
  border-color: #d9def2;
  background: #f3f5fc;
  color: #53608e;
}

.hbr-article-heading h1 {
  max-width: 950px;
  margin: 0;
  color: var(--text);
  font: 900 clamp(28px, 3.2vw, 45px)/1.12 "Poppins", sans-serif;
  letter-spacing: -1.45px;
  text-wrap: balance;
}

.hbr-article-heading .hbr-detail-meta {
  margin-top: 13px;
  color: var(--text3);
}

.hbr-article-heading .hbr-detail-meta i {
  color: #5367b1;
}

.hbr-detail-figure {
  position: relative;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 18px;
  background: #d9eee2;
}

.hbr-detail-img {
  display: block;
  width: 100%;
  max-height: 530px;
  object-fit: cover;
}

.hbr-detail-figure figcaption {
  position: absolute;
  right: 11px;
  bottom: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 22px);
  overflow: hidden;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(5, 41, 24, 0.72);
  color: rgba(255, 255, 255, 0.86);
  text-overflow: ellipsis;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  font: 700 9.5px/1 "Nunito", sans-serif;
}

.hbr-detail-ozet {
  margin: 0;
  padding: 3px 3px 3px 17px;
  border-left: 4px solid #2ab46e;
  color: var(--text2);
  font: 700 16px/1.7 "Nunito", sans-serif;
}

.hbr-article-divider {
  position: relative;
  display: grid;
  height: 55px;
  place-items: center;
  margin: 6px 0;
}

.hbr-article-divider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--border);
}

.hbr-article-divider span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: #168052;
  font-size: 13px;
}

.hbr-detail-body {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--text2);
  font: 500 15.5px/1.86 "Nunito", sans-serif;
}

.hbr-detail-body p,
.hbr-detail-body ul,
.hbr-detail-body ol,
.hbr-detail-body blockquote {
  margin: 0 0 18px;
}

.hbr-detail-body h2,
.hbr-detail-body h3,
.hbr-detail-body h4 {
  margin: 28px 0 12px;
  color: var(--text);
  font-family: "Poppins", sans-serif;
  line-height: 1.35;
}

.hbr-detail-body h2 {
  font-size: 22px;
}

.hbr-detail-body h3 {
  font-size: 18px;
}

.hbr-detail-body h4 {
  font-size: 16px;
}

.hbr-detail-body a {
  color: #137c4d;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hbr-detail-body img,
.hbr-detail-body iframe,
.hbr-detail-body video,
.hbr-detail-body table,
.hbr-detail-body pre {
  max-width: 100%;
}

.hbr-detail-body img {
  height: auto;
  margin: 10px 0 19px;
  border-radius: 15px;
}

.hbr-detail-body table {
  display: block;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hbr-detail-body table::-webkit-scrollbar {
  display: none;
}

.hbr-detail-body blockquote {
  padding: 15px 17px;
  border-left: 4px solid #25aa68;
  border-radius: 0 13px 13px 0;
  background: #f0faf4;
  color: var(--text2);
}

.hbr-muted-copy {
  color: var(--text3);
}

.hbr-kaynak-git-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-top: 23px;
  padding: 14px 16px;
  border: 1px solid #bfe4ce;
  border-radius: 15px;
  background: #f1fbf5;
  color: #126e45;
}

.hbr-kaynak-git-link > span {
  display: grid;
  min-width: 0;
  grid-template-columns: 20px 1fr;
  column-gap: 8px;
}

.hbr-kaynak-git-link > span > i {
  grid-row: 1 / 3;
  align-self: center;
}

.hbr-kaynak-git-link strong,
.hbr-kaynak-git-link small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hbr-kaynak-git-link strong {
  font: 900 11.5px/1.2 "Nunito", sans-serif;
}

.hbr-kaynak-git-link small {
  margin-top: 2px;
  color: #56826a;
  font: 700 9.5px/1.2 "Nunito", sans-serif;
}

.hbr-aksiyon-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 25px;
  padding-top: 19px;
  border-top: 1px solid var(--border);
}

.hbr-aksiyon-bar form {
  display: inline-flex;
  margin: 0;
}

.hbr-aksiyon-btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--glight);
  color: var(--text2);
  font: 800 11px/1 "Nunito", sans-serif;
  cursor: pointer;
  transition: 0.2s ease;
}

.hbr-aksiyon-btn:hover,
.hbr-aksiyon-btn.is-active,
.hbr-aksiyon-btn.hbr-aksiyon-btn-aktif {
  border-color: #b9e5ca;
  background: #eaf9f0;
  color: #0d7548;
}

.hbr-aksiyon-btn.hbr-aksiyon-btn-aktif {
  border-color: #f3bdc5;
  background: #fff0f2;
  color: #c32a3f;
}

.hbr-aksiyon-btn em {
  min-width: 19px;
  padding: 3px 5px;
  border-radius: 99px;
  background: rgba(20, 125, 78, 0.1);
  font: 900 9px/1 "Nunito", sans-serif;
  font-style: normal;
}

.hbr-story-info dl {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 5px 15px 11px;
}

.hbr-story-info dl > div {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.hbr-story-info dl > div:last-child {
  border-bottom: 0;
}

.hbr-story-info dt {
  color: var(--text3);
  font: 700 10.5px/1.2 "Nunito", sans-serif;
}

.hbr-story-info dd {
  max-width: 62%;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 900 10.5px/1.2 "Nunito", sans-serif;
}

/* ── Yorumlar ──────────────────────────────────────────────────────────── */
.hbr-yorumlar-blok {
  margin-top: 29px;
  padding-top: 25px;
  border-top: 1px solid var(--border);
}

.hbr-comments-head {
  align-items: center;
}

.hbr-comments-head h2 small {
  display: inline-grid;
  min-width: 27px;
  height: 27px;
  place-items: center;
  margin-left: 4px;
  border-radius: 9px;
  background: #eaf8f0;
  color: #157a4c;
  font: 900 10px/1 "Nunito", sans-serif;
  vertical-align: middle;
}

.hbr-yorum-liste {
  display: grid;
  gap: 13px;
  margin-bottom: 19px;
}

.hbr-yorum-item {
  display: flex;
  gap: 11px;
}

.hbr-yorum-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #0d6d43, #2cb875);
  color: #fff;
  box-shadow: 0 7px 17px rgba(19, 125, 77, 0.2);
  font: 900 14px/1 "Poppins", sans-serif;
}

.hbr-yorum-govde {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: var(--glight);
}

.hbr-yorum-ust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 5px;
}

.hbr-yorum-ust strong {
  color: var(--text);
  font: 900 11.5px/1.2 "Nunito", sans-serif;
}

.hbr-yorum-tarih {
  margin-left: auto;
  color: var(--text3);
  font: 700 9.5px/1.2 "Nunito", sans-serif;
}

.hbr-comment-business {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border-radius: 99px;
  background: #eaf8f0;
  color: #137b4d;
  font: 800 8.5px/1 "Nunito", sans-serif;
}

.hbr-yorum-govde p {
  margin: 0;
  color: var(--text2);
  font: 600 12.5px/1.58 "Nunito", sans-serif;
}

.hbr-no-comments {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  padding: 15px;
  border: 1px dashed #bfdccb;
  border-radius: 15px;
  color: #178153;
}

.hbr-no-comments > i {
  font-size: 22px;
}

.hbr-no-comments span {
  display: grid;
  color: var(--text3);
  font: 600 11px/1.45 "Nunito", sans-serif;
}

.hbr-no-comments strong {
  color: var(--text);
  font-size: 12px;
}

.hbr-yorum-form-kutu {
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: var(--glight);
}

.hbr-yorum-form-kutu label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font: 900 11.5px/1.2 "Nunito", sans-serif;
}

.hbr-yorum-textarea {
  width: 100%;
  min-height: 112px;
  padding: 12px 13px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: 13px;
  outline: 0;
  background: var(--card);
  color: var(--text);
  font: 600 12.5px/1.55 "Nunito", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hbr-yorum-textarea:focus {
  border-color: #39a873;
  box-shadow: 0 0 0 3px rgba(40, 163, 104, 0.1);
}

.hbr-comment-submit {
  width: auto;
  margin-top: 10px;
  padding: 10px 18px;
}

.hbr-yorum-giris-uyari {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hbr-yorum-giris-uyari > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 13px;
  background: #eaf8f0;
  color: #168052;
}

.hbr-yorum-giris-uyari strong {
  display: block;
  color: var(--text);
  font: 900 12px/1.2 "Nunito", sans-serif;
}

.hbr-yorum-giris-uyari p {
  margin: 3px 0 0;
  color: var(--text3);
  font: 600 11px/1.45 "Nunito", sans-serif;
}

.hbr-yorum-giris-uyari a {
  color: #147a4c;
  font-weight: 900;
}

.hbr-detail-not-found {
  min-height: 360px;
}

.hbr-detail-not-found > a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 4px;
  padding: 0 16px;
  border-radius: 12px;
  background: #117347;
  color: #fff;
  font: 900 11px/1 "Nunito", sans-serif;
}

/* ── Üye girişi uyarı modalı ───────────────────────────────────────────── */
.hbr-login-overlay {
  position: fixed;
  z-index: 10050;
  display: grid;
  inset: 0;
  place-items: center;
  padding: 18px;
  background: rgba(3, 24, 14, 0.66);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.hbr-login-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.hbr-login-dialog {
  width: min(430px, 100%);
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 23px;
  background: var(--card);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s ease;
}

.hbr-login-overlay.is-open .hbr-login-dialog {
  transform: translateY(0) scale(1);
}

.hbr-login-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 17px;
  background: linear-gradient(135deg, #0c6a41, #31ba77);
  color: #fff;
  box-shadow: 0 12px 25px rgba(15, 126, 76, 0.23);
  font-size: 20px;
}

.hbr-login-dialog h2 {
  margin: 0 0 6px;
  color: var(--text);
  font: 800 20px/1.3 "Poppins", sans-serif;
}

.hbr-login-dialog p {
  margin: 0;
  color: var(--text3);
  font: 600 12.5px/1.55 "Nunito", sans-serif;
}

.hbr-login-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 19px;
}

.hbr-login-actions a,
.hbr-login-actions button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--glight);
  color: var(--text2);
  font: 900 11.5px/1 "Nunito", sans-serif;
  cursor: pointer;
}

.hbr-login-actions a {
  border-color: #117347;
  background: #117347;
  color: #fff;
}

/* ── Ana sayfa haber alanı: mevcut grid korunarak gerçek yer imi eklenir ─ */
.hbr-home-news .nc {
  cursor: default;
}

.hbr-home-news .hbr-home-card-media {
  display: block;
  overflow: hidden;
}

.hbr-home-news .nc-img {
  display: block;
  transition: transform 0.45s ease;
}

.hbr-home-news .nc:hover .nc-img {
  transform: scale(1.035);
}

.hbr-home-news .nc-title {
  margin-top: 0;
}

.hbr-home-news .nc-title a {
  color: inherit;
}

.hbr-home-news .hbr-bookmark-btn {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.hbr-home-rss {
  display: inline-flex;
  max-width: 48%;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  color: #157b4c;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: 900 9px/1 "Nunito", sans-serif;
}

.hbr-home-news .nc-meta-left {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Dark mode ─────────────────────────────────────────────────────────── */
[data-theme="dark"] .hbr-feed-status,
[data-theme="dark"] .hbr-bookmark-btn:hover,
[data-theme="dark"] .hbr-bookmark-btn.is-active,
[data-theme="dark"] .hbr-aksiyon-btn:hover,
[data-theme="dark"] .hbr-aksiyon-btn.is-active,
[data-theme="dark"] .hbr-kaynak-git-link,
[data-theme="dark"] .hbr-comments-head h2 small,
[data-theme="dark"] .hbr-yorum-giris-uyari > span,
[data-theme="dark"] .hbr-empty > i {
  border-color: #254d37;
  background: #102a1b;
  color: #69d99b;
}

[data-theme="dark"] .hbr-detail-body blockquote {
  background: #10281a;
}

[data-theme="dark"] .hbr-feed-head {
  border-color: #28355d;
  background:
    radial-gradient(circle at 92% 0, rgba(82, 156, 191, 0.13), transparent 42%),
    linear-gradient(125deg, var(--card), #151d35);
}

[data-theme="dark"] .hbr-feed-head-icon,
[data-theme="dark"] .hbr-article-heading .hbr-detail-rss-badge,
[data-theme="dark"] .hbr-article-heading .hbr-detail-editor-badge {
  border-color: #354266;
  background: #1b2542;
  color: #aebbf2;
}

[data-theme="dark"] .hbr-aksiyon-btn.hbr-aksiyon-btn-aktif {
  border-color: #713a41;
  background: #351a1f;
  color: #ff91a0;
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .hbr-hero,
  .hbr-detail-hero {
    grid-template-columns: minmax(0, 1.3fr) minmax(285px, 0.7fr);
  }

  .hbr-hero-visual {
    transform: scale(0.88);
    transform-origin: right center;
  }

  .hbr-detail-hero-art {
    transform: scale(0.9);
    transform-origin: right center;
  }

  .hbr-layout,
  .hbr-detail-layout {
    grid-template-columns: minmax(0, 1fr) 315px;
    gap: 20px;
  }

  .hbr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 980px) {
  .hbr-layout,
  .hbr-detail-layout {
    grid-template-columns: 1fr;
  }

  .hbr-sidebar-sticky {
    position: static;
    z-index: auto;
    width: 100%;
    max-height: none;
    padding-right: 0;
    overflow: visible;
    isolation: auto;
    scrollbar-gutter: auto;
  }

  .hbr-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: max-content;
    align-items: start;
  }

  .hbr-sidebar > * {
    height: auto;
    min-height: 0;
    align-self: start;
  }

  .hbr-detail-sidebar .hbr-story-info {
    order: -1;
  }
}

@media (max-width: 820px) {
  .hbr-hero,
  .hbr-detail-hero {
    grid-template-columns: minmax(0, 1fr) 245px;
    padding-right: 32px;
    padding-left: 34px;
  }

  .hbr-hero-visual,
  .hbr-detail-hero-art {
    transform: scale(0.72);
    transform-origin: right center;
  }
}

@media (max-width: 720px) {
  .hbr-shell {
    width: calc(100% - 20px);
    padding-inline: 0;
    margin-top: 12px;
    margin-bottom: 28px;
  }

  .hbr-hero,
  .hbr-detail-hero {
    width: 100%;
    height: 238px;
    min-height: 238px;
    grid-template-columns: minmax(0, 1fr);
    padding: 24px 19px;
    border-radius: 25px;
    box-shadow: 0 15px 38px rgba(24, 35, 91, 0.2);
  }

  .hbr-hero {
    align-items: start;
  }

  .hbr-hero-copy,
  .hbr-detail-hero-copy {
    width: 100%;
  }

  .hbr-hero-eyebrow {
    margin-bottom: 10px;
    padding: 5px 10px;
    font-size: 9px;
  }

  .hbr-hero h1 {
    max-width: 92%;
    font-size: 31px;
    line-height: 1.06;
    letter-spacing: -1.25px;
  }

  .hbr-hero-copy > p {
    display: -webkit-box;
    max-width: 88%;
    margin-top: 7px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 11.5px;
    line-height: 1.43;
  }

  .hbr-hero-actions {
    gap: 7px;
    margin-top: 12px;
  }

  .hbr-hero-btn {
    min-height: 39px;
    padding: 0 12px;
    border-radius: 12px;
    font-size: 10.5px;
  }

  .hbr-hero-meta {
    margin-top: 9px;
    font-size: 8.5px;
  }

  .hbr-hero-meta span:nth-child(-n + 2) {
    display: none;
  }

  .hbr-hero-visual {
    position: absolute;
    z-index: 1;
    width: 250px;
    height: 220px;
    right: -58px;
    bottom: -30px;
    opacity: 0.43;
    transform: scale(0.72);
    transform-origin: right bottom;
    pointer-events: none;
  }

  .hbr-visual-card-left,
  .hbr-dot-two,
  .hbr-dot-three {
    display: none;
  }

  .hbr-section-head {
    align-items: flex-start;
    margin-bottom: 12px;
  }

  .hbr-feed-head {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    padding: 11px;
    border-radius: 16px;
  }

  .hbr-feed-head-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 14px;
  }

  .hbr-section-head h2 {
    font-size: 18px;
  }

  .hbr-section-head p {
    font-size: 11px;
  }

  .hbr-feed-status {
    display: none;
  }

  .hbr-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hbr-news-card {
    display: grid;
    min-height: 128px;
    grid-template-columns: 128px minmax(0, 1fr);
    border-radius: 17px;
  }

  .hbr-img-wrap,
  .hbr-card-media {
    width: 100%;
    height: 100%;
    min-height: 128px;
    aspect-ratio: auto;
  }

  .hbr-news-card .nc-body {
    padding: 12px;
  }

  .hbr-news-card .nc-meta-row {
    min-height: 25px;
    margin-bottom: 5px;
  }

  .hbr-news-card .nc-cat {
    max-width: 70%;
    padding: 3px 7px;
    font-size: 8px;
  }

  .hbr-news-card .nc-title {
    margin-bottom: 5px;
    font-size: 12.5px;
    line-height: 1.35;
  }

  .hbr-card-summary {
    -webkit-line-clamp: 1;
    margin-bottom: 6px;
    font-size: 10.5px;
  }

  .hbr-news-card .nc-meta {
    padding-top: 7px;
    font-size: 8.5px;
  }

  .hbr-news-card .nc-meta-left span:nth-child(n + 2),
  .hbr-card-arrow {
    display: none;
  }

  .hbr-bookmark-btn {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 11px;
  }

  .hbr-star,
  .hbr-mini-badge {
    top: 8px;
    padding: 4px 7px;
    font-size: 7.5px;
  }

  .hbr-star {
    left: 8px;
  }

  .hbr-mini-badge {
    right: 8px;
  }

  .hbr-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hbr-list-page .hbr-hero + .hbr-layout {
    margin-top: 12px;
  }

  .hbr-side-card,
  .hbr-breaking,
  .hbr-ad-box {
    border-radius: 17px;
  }

  .hbr-side-head {
    min-height: 50px;
  }

  .hbr-side-head > div {
    font-size: 12.5px;
  }

  .hbr-mobile-reader-nav {
    display: flex;
    min-height: 43px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    padding: 5px 6px 5px 5px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: var(--card);
    box-shadow: 0 7px 20px rgba(10, 67, 39, 0.06);
  }

  .hbr-mobile-reader-nav a {
    display: inline-flex;
    min-width: 0;
    min-height: 33px;
    align-items: center;
    gap: 8px;
    padding: 0 11px 0 8px;
    border-radius: 11px;
    background: #edf8f2;
    color: #126f46;
    font: 900 10.5px/1 "Nunito", sans-serif;
  }

  .hbr-mobile-reader-nav a i {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(10, 67, 39, 0.08);
  }

  .hbr-mobile-reader-nav > span {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    padding-right: 5px;
    color: var(--text3);
    font: 800 9px/1 "Nunito", sans-serif;
  }

  .hbr-operation-notice {
    margin-top: 14px;
    padding: 10px 11px;
    border-radius: 12px;
    font-size: 10.5px;
  }

  .hbr-detail-hero {
    align-items: center;
    margin-bottom: 12px;
  }

  .hbr-detail-badges {
    margin-bottom: 8px;
  }

  .hbr-detail-badges .nc-cat,
  .hbr-detail-rss-badge,
  .hbr-detail-editor-badge {
    padding: 4px 8px;
    font-size: 8px;
  }

  .hbr-detail-hero h1 {
    max-width: 96%;
    font-size: 25px;
    line-height: 1.12;
    letter-spacing: -0.9px;
  }

  .hbr-detail-meta {
    gap: 8px 11px;
    margin-top: 11px;
    font-size: 8.5px;
  }

  .hbr-detail-meta span:nth-child(3) {
    display: none;
  }

  .hbr-detail-hero-art {
    position: absolute;
    z-index: 1;
    width: 240px;
    height: 220px;
    right: -75px;
    bottom: -35px;
    opacity: 0.25;
    transform: scale(0.73);
    transform-origin: right bottom;
    pointer-events: none;
  }

  .hbr-detail-float-one {
    display: none;
  }

  .hbr-article-card {
    padding: 14px;
    border-radius: 19px;
  }

  .hbr-article-heading {
    margin-bottom: 15px;
    padding: 1px 1px 15px;
  }

  .hbr-article-heading h1 {
    font-size: 24px;
    line-height: 1.16;
    letter-spacing: -0.8px;
  }

  .hbr-article-heading .hbr-detail-meta {
    margin-top: 10px;
  }

  .hbr-detail-figure {
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .hbr-detail-img {
    max-height: 350px;
  }

  .hbr-detail-ozet {
    padding-left: 12px;
    font-size: 13px;
    line-height: 1.63;
  }

  .hbr-article-divider {
    height: 46px;
  }

  .hbr-detail-body {
    font-size: 13.5px;
    line-height: 1.78;
  }

  .hbr-detail-body h2 {
    font-size: 18px;
  }

  .hbr-detail-body h3 {
    font-size: 16px;
  }

  .hbr-aksiyon-bar {
    display: flex;
    flex-wrap: nowrap;
    gap: 7px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .hbr-aksiyon-bar::-webkit-scrollbar {
    display: none;
  }

  .hbr-aksiyon-bar form {
    flex: 0 0 auto;
  }

  .hbr-aksiyon-btn {
    min-height: 38px;
    flex: 0 0 auto;
    padding: 0 11px;
    font-size: 10px;
    white-space: nowrap;
  }

  .hbr-yorumlar-blok {
    margin-top: 23px;
    padding-top: 20px;
  }

  .hbr-yorum-form-kutu {
    padding: 13px;
  }

  .hbr-yorum-govde {
    padding: 11px 12px;
  }

  .hbr-login-dialog {
    padding: 21px;
    border-radius: 20px;
  }

  .hbr-login-dialog h2 {
    font-size: 18px;
  }

  .hbr-login-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hbr-news-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .hbr-img-wrap,
  .hbr-card-media {
    min-height: 125px;
  }

  .hbr-card-summary {
    display: none;
  }

  .hbr-news-card .nc-title {
    -webkit-line-clamp: 3;
  }

  .hbr-home-news .news-grid {
    grid-template-columns: 1fr;
  }

  .hbr-home-news .nc.feat {
    grid-row: auto;
  }

  .hbr-home-news .nc.feat .nc-img,
  .hbr-home-news .nc:not(.feat) .nc-img {
    height: 180px;
  }
}

@media (max-width: 390px) {
  .hbr-shell {
    width: calc(100% - 14px);
    padding-inline: 0;
  }

  .hbr-hero,
  .hbr-detail-hero {
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 22px;
  }

  .hbr-hero h1 {
    max-width: 96%;
    font-size: 27px;
  }

  .hbr-hero-copy > p {
    max-width: 94%;
    font-size: 10.5px;
  }

  .hbr-hero-btn {
    padding: 0 10px;
    font-size: 9.5px;
  }

  .hbr-detail-hero h1 {
    font-size: 22px;
  }

  .hbr-news-card {
    grid-template-columns: 102px minmax(0, 1fr);
  }

  .hbr-news-card .nc-body {
    padding: 10px;
  }

  .hbr-news-card .nc-title {
    font-size: 11.5px;
  }

  .hbr-news-card .nc-meta {
    font-size: 8px;
  }

  .hbr-detail-meta span:nth-child(2) {
    display: none;
  }

  .hbr-detail-figure figcaption {
    max-width: calc(100% - 16px);
    right: 8px;
    bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hbr-hero-live-dot,
  .hbr-float-dot,
  .hbr-orbit,
  .hbr-visual-card,
  .hbr-detail-wave,
  .hbr-detail-news-device,
  .hbr-detail-float,
  .hbr-feed-status span,
  .hbr-breaking-label span {
    animation: none !important;
  }

  .hbr-news-card,
  .hbr-news-card .nc-img,
  .hbr-source-copy b,
  .hbr-login-dialog,
  .hbr-login-overlay {
    transition: none !important;
  }
}

@keyframes hbr-live-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.56; transform: scale(0.82); }
}

@keyframes hbr-card-float {
  0%, 100% { transform: translateY(0) rotate(0.001deg); }
  50% { transform: translateY(-8px) rotate(0.001deg); }
}

@keyframes hbr-dot-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(5px, -9px, 0); }
}

@keyframes hbr-orbit-spin {
  from { rotate: 0deg; }
  to { rotate: 360deg; }
}
