/*
Theme Name: Haber Borsa
Theme URI: https://haberborsa.com
Author: Haber Borsa
Description: Son dakika borsa haberleri için modern ve sade bir tema.
Version: 1.0.0
Text Domain: haber-borsa
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --hb-bg: #f4f4f4;
  --hb-card: #ffffff;
  --hb-text: #111315;
  --hb-muted: #6b7280;
  --hb-accent: #f26522;
  --hb-line: #d8dce1;
  --hb-shadow: 0 10px 30px rgba(17, 19, 21, 0.1);
  --hb-header-bg: #05060a;
  --hb-header-pill: #151619;
  --hb-header-border: rgba(255, 255, 255, 0.08);
  --hb-header-text: #f8fafc;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--hb-bg);
  color: var(--hb-text);
}

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

.hb-wrapper {
  max-width: 1444px;
  margin: 0 auto;
  padding: 32px 16px 72px;
}

.hb-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.hb-header-inner {
  max-width: 1444px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hb-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--hb-text);
  font-weight: 700;
  min-width: 210px;
}

.hb-brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hb-brand-top,
.hb-brand-bottom {
  flex: 1;
}

.hb-brand-top {
  background: #dc2626;
}

.hb-brand-bottom {
  background: #1d4ed8;
}

.hb-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hb-brand-text strong {
  font-size: 20px;
  letter-spacing: -0.2px;
}

.hb-brand-text small {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--hb-muted);
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hb-main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hb-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.hb-nav-list li {
  display: flex;
}

.hb-nav-list a {
  padding: 6px 4px;
  color: var(--hb-text);
}

.hb-nav-list a:hover,
.hb-nav-list .current-menu-item > a {
  color: var(--hb-accent);
}

.hb-nav-fallback li {
  margin: 0;
}

.hb-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hb-header-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hb-action-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  color: var(--hb-text);
}

.hb-action-btn svg {
  width: 20px;
  height: 20px;
}

.hb-action-btn:hover {
  background: #f3f4f6;
}

.hb-action-btn--light {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
}

.hb-menu-icon {
  width: 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.hb-menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.hb-menu-icon--close {
  width: 18px;
}

.hb-menu-icon--close span:first-child {
  transform: rotate(45deg) translate(2px, 2px);
  transform-origin: center;
}

.hb-menu-icon--close span:last-child {
  transform: rotate(-45deg) translate(2px, -2px);
  transform-origin: center;
}

.hb-search-panel {
  display: none;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}

.hb-search-panel.is-open {
  display: block;
}

.hb-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 820px;
  margin: 0 auto;
  padding: 14px 16px;
}

.hb-search-form .search-field {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 15px;
  background: #f9fafb;
}

.hb-search-form .search-submit {
  border: none;
  background: var(--hb-accent);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hb-mobile-menu,
.hb-mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
}

.hb-mobile-menu {
  width: min(340px, 90vw);
  background: #ffffff;
  box-shadow: -10px 0 30px rgba(15, 19, 25, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.hb-mobile-menu.is-open {
  transform: translateX(0);
}

.hb-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.hb-mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.hb-mobile-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

.hb-mobile-nav a {
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid #f1f1f1;
}

.hb-mobile-cta {
  margin-top: auto;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hb-mobile-overlay {
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 45;
}

.hb-mobile-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

body.hb-menu-open {
  overflow: hidden;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 980px) {
  .hb-main-nav {
    display: none;
  }

  .hb-header-inner {
    padding: 12px 16px;
  }

  .hb-brand {
    min-width: auto;
  }
}

@media (max-width: 640px) {
  .hb-header-actions {
    gap: 8px;
  }

  .hb-brand-text small {
    font-size: 11px;
  }
}

.hb-hero {
  margin-bottom: 40px;
}

.hb-section-header {
  margin-bottom: 18px;
}

.hb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--hb-accent);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 13px;
}

.hb-eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--hb-accent);
  border-radius: 10px;
}

.hb-title {
  margin: 8px 0 6px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.hb-subtitle {
  margin: 0;
  color: var(--hb-muted);
  font-size: 15px;
}

.hb-slider {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #0b1020;
  height: clamp(360px, 45vw, 560px);
  aspect-ratio: 16 / 6;
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.25);
}

.hb-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  background: #0f172a;
  overflow: hidden;
}

.hb-slide-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0f172a;
}

.hb-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hb-slide.is-placeholder {
  background: linear-gradient(140deg, #0f172a, #111827);
}

.hb-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.hb-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hb-slide-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  height: 100%;
  padding: 28px;
}

.hb-slide-info {
  width: 100%;
  max-width: 980px;
  background: rgba(5, 8, 18, 0.85);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: 0 16px 42px rgba(1, 3, 8, 0.35);
  backdrop-filter: blur(4px);
}

.hb-slide-info a {
  color: inherit;
}

.hb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
}

.hb-badge::before {
  content: '';
  width: 9px;
  height: 9px;
  background: var(--hb-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(242, 101, 34, 0.22);
}

.hb-slide-title {
  margin: 12px 0 8px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.hb-slide-excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  max-width: 640px;
}

.hb-slider-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hb-slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hb-slider-dots button.is-active {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.1);
}

@media (max-width: 640px) {
  .hb-slide-content {
    padding: 18px;
  }

  .hb-slide-info {
    padding: 18px;
  }
}

.hb-hour-block {
  margin-bottom: 38px;
}

.hb-hour-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 18px;
}

.hb-hour-heading::before {
  content: '';
  width: 34px;
  height: 3px;
  background: var(--hb-accent);
  border-radius: 6px;
}

.hb-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  grid-auto-flow: dense;
}

@media (max-width: 1280px) {
  .hb-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

.hb-card {
  background: var(--hb-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--hb-shadow);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.hb-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hb-card--featured {
  grid-column: span 2;
  position: relative;
  min-height: 320px;
  color: #ffffff;
}

.hb-card--featured > a {
  display: block;
  position: relative;
  height: 100%;
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  color: #ffffff;
}

.hb-card--featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hb-card-featured-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 24px;
  background: rgba(6, 9, 15, 0.85);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(5, 8, 12, 0.35);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hb-card--secondary {
  grid-column: span 1;
  min-height: 220px;
}

.hb-card--compact {
  grid-column: span 1;
  min-height: 220px;
}

@media (max-width: 1080px) {
  .hb-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .hb-card,
  .hb-card--featured,
  .hb-card--secondary,
  .hb-card--compact {
    grid-column: span 1;
  }
}

.hb-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #f1f1f1, #e2e8f0);
  overflow: hidden;
}

.hb-card-thumb.has-image {
  background: #0f172a;
}

.hb-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hb-card-thumb.is-placeholder {
  background: linear-gradient(135deg, #f1f1f1, #e2e8f0);
}

.hb-card-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(17, 19, 21, 0.8);
  color: #ffffff;
  padding: 6px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hb-card-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--hb-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.18);
}

.hb-card-badge--inline {
  position: static;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  width: auto;
}

.hb-card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.hb-card--compact .hb-card-body {
  padding: 12px;
}

.hb-card-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--hb-text);
}

.hb-card--compact .hb-card-title {
  font-size: 15px;
}

.hb-card--featured .hb-card-title {
  font-size: 24px;
  line-height: 1.25;
  color: #ffffff;
}

.hb-card-excerpt {
  margin: 0;
  color: var(--hb-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hb-card--featured .hb-card-excerpt {
  color: rgba(255, 255, 255, 0.85);
}

.hb-empty {
  color: var(--hb-muted);
  text-align: center;
  padding: 40px 0;
}

.hb-article-wrapper {
  max-width: 1444px;
  margin: 0 auto;
  padding: 40px 16px 80px;
}

.hb-article {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 50px 120px rgba(15, 19, 25, 0.08);
  padding: 32px;
}

.hb-article-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.hb-article-hero-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hb-article-breadcrumb {
  font-size: 13px;
  color: var(--hb-muted);
  display: flex;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hb-article-breadcrumb a {
  color: var(--hb-text);
  font-weight: 700;
}

.hb-article-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(31, 41, 55, 0.08);
  color: var(--hb-text);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  width: fit-content;
}

.hb-article-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.4px;
}

.hb-article-subtitle {
  margin: 0;
  font-size: 18px;
  color: var(--hb-muted);
  line-height: 1.55;
}

.hb-article-hero-media {
  border-radius: 20px;
  overflow: hidden;
  background: #f1f5f9;
  box-shadow: 0 30px 80px rgba(15, 19, 25, 0.12);
}

.hb-article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hb-article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
  flex-wrap: wrap;
}

.hb-article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hb-article-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.hb-article-author strong {
  display: block;
}

.hb-article-author span {
  display: block;
  font-size: 13px;
  color: var(--hb-muted);
}

.hb-article-meta-stats {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hb-article-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3f4f6;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--hb-text);
}

.hb-article-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 260px;
  gap: 24px;
}

.hb-article-aside-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hb-article-summary,
.hb-article-tagsbox {
  background: #f9fafb;
  border-radius: 16px;
  padding: 16px;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

.hb-article-summary h3,
.hb-article-tagsbox h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
}

.hb-article-summary p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 14px;
}

.hb-article-tagsbox .hb-article-tags {
  margin-top: 8px;
}

.hb-article-aside-left {
  position: sticky;
  top: 120px;
  align-self: flex-start;
  height: max-content;
}

.hb-article-info-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 18px 18px;
  box-shadow: var(--hb-shadow);
  border: 1px solid var(--hb-line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hb-article-reading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hb-article-reading-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hb-article-reading-bar {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.5);
  overflow: hidden;
}

.hb-article-reading-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, #f97316, #fb923c);
  border-radius: inherit;
  transition: width 0.2s ease-out;
}

.hb-article-reading-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--hb-muted);
}

.hb-article-dates {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hb-article-mini-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.hb-article-mini-author-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
}

.hb-article-mini-author-name {
  margin: 0;
  font-size: 16px;
  display: block;
}

.hb-article-mini-author-title {
  font-size: 13px;
  color: var(--hb-muted);
}

.hb-article-mini-author-btn {
  display: none;
}

.hb-article-share {
  display: flex;
  gap: 8px;
}

.hb-article-share--aside {
  margin-top: 4px;
}

.hb-article-info-divider {
  height: 1px;
  background: var(--hb-line);
  margin: 8px 0;
}

.hb-share-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--hb-line);
  background: #ffffff;
  color: var(--hb-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
}

.hb-share-icon--light {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border-color: var(--hb-line);
}

.hb-author-box {
  margin-top: 36px;
}

.hb-author-box-inner {
  background: #ffffff;
  border-radius: 26px;
  padding: 22px 22px 24px;
  box-shadow: var(--hb-shadow);
  border: 1px solid var(--hb-line);
}

.hb-author-box-main {
  display: flex;
  gap: 18px;
}

.hb-author-box-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  object-fit: cover;
}

.hb-author-box-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hb-author-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hb-author-box-name {
  margin: 0;
  font-size: 20px;
}

.hb-author-box-bio {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

.hb-author-box-link {
  margin-top: 4px;
  font-weight: 700;
  color: var(--hb-accent);
}

@media (max-width: 640px) {
  .hb-author-box-main {
    flex-direction: column;
  }
}

.hb-article-content {
  line-height: 1.8;
  color: #0f172a;
  font-size: 18px;
}

.hb-article-content p {
  margin: 0 0 18px;
}

.hb-article-content h2,
.hb-article-content h3,
.hb-article-content h4 {
  margin: 28px 0 12px;
  line-height: 1.3;
}

.hb-article-content h2 {
  font-size: 26px;
  letter-spacing: -0.3px;
}

.hb-article-content h3 {
  font-size: 22px;
}

.hb-article-content h4 {
  font-size: 18px;
}

.hb-article-content ul,
.hb-article-content ol {
  margin: 0 0 18px 1.2rem;
  padding: 0;
}

.hb-article-content li {
  margin-bottom: 6px;
}

.hb-article-content blockquote {
  margin: 24px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--hb-accent);
  background: #f9fafb;
  border-radius: 12px;
  color: #111827;
}

.hb-article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.hb-article-content th,
.hb-article-content td {
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
}

.hb-article-content th {
  background: #f3f4f6;
  text-align: left;
}

.hb-article-content img {
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(15, 19, 25, 0.12);
  margin: 26px 0;
}

.hb-article-aside-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hb-article-aside-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 14px;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}

.hb-article-aside-card h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111827;
}

.hb-article-spotlight {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hb-article-spotlight a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.15s ease;
  color: #0f172a;
}

.hb-article-spotlight img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.hb-article-spotlight div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hb-article-spotlight .hb-article-aside-time {
  font-size: 12px;
  color: var(--hb-muted);
}

.hb-article-aside-card--spotlight {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--hb-shadow);
  border: 1px solid var(--hb-line);
}

.hb-article-aside-card--spotlight .hb-article-spotlight a:hover {
  background: #f3f4f6;
}

.hb-article-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--hb-muted);
}

.hb-article-tags span {
  background: #f3f4f6;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--hb-text);
}

@media (max-width: 1024px) {
  .hb-article-hero-row {
    grid-template-columns: 1fr;
  }

  .hb-article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hb-title {
    font-size: 24px;
  }

  .hb-slide-title {
    font-size: 22px;
  }

  .hb-slider {
    min-height: 260px;
  }

  .hb-card {
    min-height: 200px;
  }

  .hb-article-wrapper {
    padding: 28px 12px 60px;
  }

  .hb-article {
    padding: 20px;
  }

  .hb-article-title {
    font-size: 30px;
  }

  .hb-article-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
