:root {
  --red: #E50914;
  --red-dark: #B20710;
  --black: #0A0A0A;
  --black2: #111111;
  --black3: #1a1a1a;
  --gray-dark: #222222;
  --gray-mid: #3a3a3a;
  --gray-light: #888888;
  --gray-pale: #aaaaaa;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--black2);
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 2px;
}

@font-face {
  font-family: 'Blanka';
  src: url('./font/Blanka-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  height: 64px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.5) 80%, transparent 100%);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  font-family: 'Blanka', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo span {
  color: var(--white);
}

.logo-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  animation: blink 1.8s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.3;
    transform: scale(0.6)
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-pale);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-search {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 6px 13px;
  border-radius: 2px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  width: 160px;
  transition: border-color 0.2s, width 0.3s;
}

.nav-search:focus {
  outline: none;
  border-color: var(--red);
  width: 220px;
}

.nav-search::placeholder {
  color: var(--gray-light);
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(to right,
      rgba(0, 0, 0, 0.95) 38%,
      rgba(0, 0, 0, 0.4) 65%,
      transparent 100%),
    linear-gradient(to top,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.2) 35%,
      transparent 60%);

  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 6vw 80px;
  max-width: 680px;
  animation: heroIn 1s ease-out both;
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px 5px 10px;
  margin-bottom: 18px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.93;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-title em {
  color: var(--red);
  font-style: normal;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-pale);
}

.hero-meta .sep {
  color: var(--red);
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 3px 7px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 26px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateX(3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 26px;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

/* TICKER */
.ticker-wrap {
  background: var(--red);
  padding: 9px 0;
  overflow: hidden;
  margin: 20px 0;
}

.ticker-inner {
  display: flex;
  gap: 50px;
  animation: ticker 32s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.4);
}

/* SECTION */
.section {
  /* padding: 60px 0px 20px 0px; */
  padding: 8px 0px;
  overflow: hidden;
}

section {
  padding: 60px 0px 20px 0px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  margin-bottom: 14px;
}

.section-header-0 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rtag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  background: var(--red);
  color: var(--white);
  padding: 3px 9px;
}

.section-more {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: gap 0.2s;
}

.section-more:hover {
  gap: 7px;
}

.section-more::after {
  content: '›';
  font-size: 18px;
}

/* CATEGORY PILLS */
.cat-row {
  display: flex;
  gap: 8px;
  padding: 0 4vw;
  overflow-x: auto;
  margin-bottom: 22px;
  scrollbar-width: none;
}

.cat-row::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid var(--gray-mid);
  color: var(--gray-pale);
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* SCROLL ROW */
.cards-row {
  display: flex;
  gap: 10px;
  padding: 6px 4vw 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cards-row::-webkit-scrollbar {
  display: none;
}

/* CARDS */
.card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--black3);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s;
}

.card:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(229, 9, 20, 0.35);
  z-index: 10;
}

.card-wide {
  width: 320px;
}

.card-tall {
  width: 200px;
}

.card-sq {
  width: 240px;
}

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

.card-img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card:hover .card-img {
  transform: scale(1.09);
}

.card-wide .card-img {
  height: 180px;
}

.card-tall .card-img {
  height: 280px;
}

.card-sq .card-img {
  height: 240px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 42px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, transparent 100%);
}

.card-rubrik {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
  display: block;
}

.card-title {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}

.card-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: var(--gray-light);
  margin-top: 6px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.card-meta .dot {
  color: var(--red);
}

/* FEATURED GRID */
.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 14px;
}

.featured-main {
  grid-column: 1/2;
  grid-row: 1/3;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.featured-sub {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.featured-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
  display: block;
}

.featured-sub img {
  transition: .4s;
}

.featured-main:hover img,
.featured-sub:hover img {
  transform: scale(1.05);
}

.featured-main .card-overlay {
  padding: 60px 20px 20px;
}

.featured-main .card-title {
  font-size: 18px;
  line-height: 1.3;
}

.featured-main:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 0 2px var(--white);
}

.featured-sub {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  background: var(--black3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.featured-sub img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.featured-sub:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
}

.featured-sub:hover img {
  transform: scale(1.07);
}

@media (max-width:1024px) {

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  /* main jadi full width */
  .featured-main {
    grid-column: 1/3;
    grid-row: auto;
    height: 320px;
  }

  /* sub jadi dua kolom */
  .featured-sub {
    height: 200px;
  }

  /* overlay sedikit diperbesar */
  .featured-sub .card-title {
    font-size: 15px;
    line-height: 1.35;
  }

  .featured-sub .card-meta {
    font-size: 12px;
  }

}

@media (max-width:768px) {

  .featured-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .featured-main {
    height: 260px;
  }

  .featured-sub {
    height: 180px;
  }

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

}

/* OPINION STRIP */
.opinion-strip {
  background: linear-gradient(135deg, var(--gray-dark) 0%, var(--black3) 100%);
  border-left: 4px solid var(--red);
  margin: 0 4vw;
  padding: 24px 28px 0px 28px;
  /* display: flex;
  align-items: center;
  gap: 24px; */
  cursor: pointer;
  transition: border-color 0.2s;
}

.opinion-strip:hover {
  border-color: #ff2d3d;
}

.opinion-data {
  display: flex;
  align-items: center;
  gap: 24px;
}


.opinion-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--red);
  line-height: 0.8;
  flex-shrink: 0;
}

.opinion-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.opinion-headline {
  font-family: 'Barlow', sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.opinion-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  color: var(--gray-pale);
}

@media (max-width: 480px) {
  .opinion-data {
    flex-wrap: wrap;
    gap: 12px;
  }

  .opinion-headline {
    font-size: 16px;
  }

  .opinion-quote {
    display: none;
  }

  .opinion-author {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
  }
}

/* ROLE MODEL */
.person-card {
  /* flex: 0 0 auto; */
  width: auto;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 10px;
}

.person-card:hover {
  transform: translateY(-8px);
}

.person-img-wrap {
  width: 136px;
  height: 136px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gray-mid);
  transition: border-color 0.3s;
  position: relative;
}

.person-card:hover .person-img-wrap {
  border-color: var(--red);
}

.person-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(to top, rgba(229, 9, 20, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.person-card:hover .person-img-wrap::after {
  opacity: 1;
}

.person-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-name {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.person-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: var(--gray-pale);
  margin-top: 3px;
}

/* MISSION */
.mission-banner {
  position: relative;
  margin: 30px 0;
  overflow: hidden;
  padding: 60px 6vw;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a0404 50%, #0f0f0f 100%);
}

.mission-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(229, 9, 20, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(229, 9, 20, 0.07) 0%, transparent 60%);
}

.mission-inner {
  position: relative;
  z-index: 1;
}

.mission-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
}

.mission-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 20px;
}

.mission-title em {
  color: var(--red);
  font-style: normal;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 28px;
}

.mission-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-left: 2px solid var(--gray-mid);
  transition: border-color 0.2s, background 0.2s;
}

.mission-item:hover {
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.05);
}

.mission-item-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.mission-item-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ABOUT */
.about-strip {
  margin: 36px 4vw 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-mid);
}

.about-cell {
  background: var(--black2);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.about-cell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.about-cell:hover::before {
  transform: scaleX(1);
}

.about-cell-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.about-cell-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about-cell-text {
  font-size: 14px;
  color: var(--gray-pale);
  line-height: 1.65;
}

/* FOOTER */
footer {
  background: #050505;
  border-top: 1px solid var(--gray-dark);
  padding: 50px 6vw 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-logo {
  font-family: 'Blanka', sans-serif;
  font-size: 30px;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray-pale);
  line-height: 1.65;
  max-width: 260px;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--gray-pale);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-light);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-mid);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  color: var(--white);
}

.social-btn:hover {
  border-color: var(--red);
  background: rgba(229, 9, 20, 0.1);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {

  .hero {
    height: 80vh;
  }

  .hero-title {
    font-size: clamp(40px, 6vw, 70px);
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .featured-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .about-strip {
    grid-template-columns: 1fr;
  }

}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  nav {
    padding: 0 14px;
  }

  .nav-links {
    display: none;
  }

  .nav-search {
    width: 120px;
  }

  .hero {
    height: auto;
    min-height: 520px;
    align-items: flex-end;
  }

  .hero-content {
    padding: 0 20px 60px;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 0.95;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .section-header {
    padding: 0 20px;
  }

  .cards-row {
    padding: 6px 20px 16px;
  }

  .cat-row {
    padding: 0 20px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .featured-main {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-sub img {
    height: 200px;
  }

  .mission-banner {
    padding: 50px 20px;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-strip {
    margin: 30px 20px;
  }

  .opinion-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .opinion-quote {
    font-size: 50px;
  }

  footer {
    padding: 40px 20px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

  .hero-title {
    font-size: 32px;
  }

  .card-wide {
    width: 260px;
  }

  .card-tall {
    width: 180px;
  }

  .card-sq {
    width: 200px;
  }

  .person-card {
    width: 130px;
  }

  .person-img-wrap {
    width: 110px;
    height: 110px;
  }

}

/* ICON RIGHT */
.nav-icons {
  display: none;
  gap: 14px;
  font-size: 20px;
  cursor: pointer;
}

.menu-toggle {
  font-size: 22px;
}

/* MOBILE MENU */

.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(-120%);
  transition: transform .35s ease;
  z-index: 998;
  padding: 20px;

}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-search {
  width: 100%;
  padding: 10px 12px;
  background: #111;
  border: 1px solid #333;
  color: white;
  margin-bottom: 18px;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu a {
  text-decoration: none;
  color: #ccc;
  font-weight: 600;
  font-size: 15px;
}

/* MOBILE */

@media(max-width:768px) {

  .nav-links {
    display: none;
  }

  .nav-search {
    display: none;
  }

  .nav-icons {
    display: flex;
  }

}

.Breaking-slider {
  padding: 10px 0 20px;
}

.Breaking-slider .swiper-slide {
  width: auto;
}

/* SEE ALL CARD */

.card-seeall {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
}

.card-seeall:hover {
  background: #161616;
}

.seeall-link {
  text-decoration: none;
  color: white;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25% 0;
}

.seeall-content {
  text-align: center;
}

.seeall-icon {
  font-size: 32px;
  margin-bottom: 10px;
  color: #E50914;
}

.seeall-text {
  font-weight: 700;
  letter-spacing: .5px;
}

.lazy-img {

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;

  filter: blur(12px);

  transform: scale(1.02);

  transition:

    opacity .45s ease,
    filter .45s ease,
    transform .45s ease;

}

/* saat gambar sudah load */

.lazy-img.loaded {

  opacity: 1;

  filter: blur(0);

  transform: scale(1);

}

/* HEADER */

.category-header {
  margin-bottom: 30px;
}

.category-header h1 {
  font-size: 32px;
}

.category-header p {
  color: #777;
}

/* SLIDER */

.trending-slider {
  margin-bottom: 40px;
}

.trend-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.trend-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .4s;
}

.trend-card:hover img,
.trend-card:hover img {
  transform: scale(1.05);
}

.trend-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
}

/* LAYOUT */

.category-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

/* GRID */

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.news-card a {
  cursor: pointer;
  text-decoration: none;
}

.news-card a:hover h3 {
  color: #e7e7e7de;
  text-decoration: none;
}

.news-card:hover img {
  transform: scale(1.02);
  transition: transform 0.3s ease-in-out;
}

.news-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: .4s;
}


.news-card h3 {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.meta {
  font-size: 13px;
  color: #888;
}

/* SIDEBAR */

.sidebar-title {
  margin-bottom: 15px;
}


.trend-item a {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  color: #fff;
  text-decoration: none;
  padding: 5px 0px;
}

.trend-item a:hover {
  color: #aaaaaa;

}

.trend-item img {
  width: 70px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.trend-item h4 {
  font-size: 14px;
}


/* MOBILE */

@media(max-width:768px) {

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

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

}

/***detail*/
.container {
  margin: auto;
  padding: 0 4vw;
  margin-bottom: 14px;
}

/* BREADCRUMB */

.breadcrumb {

  font-size: 14px;
  color: #777;
  margin: 20px 0;

}

.breadcrumb a {

  color: #666;
  text-decoration: none;

}

.breadcrumb span {

  margin: 0 6px;

}

/* HEADER */

.article-header h1 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  justify-content: space-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}

.author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* HERO */
.article-hero img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 8px;
}

.caption {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
}

/* LAYOUT */
.layout-detail {

  max-width: 1280px;
  margin: auto;
  padding: 40px 20px;
  background: linear-gradient(0, #262626d7, #f3f4f600);
  border-radius: 18px;
}

.article-layout2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* CONTENT */

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

.article-content h2 {
  margin-top: 25px;
  font-size: 24px;
}

.article-content ul {
  margin-left: 20px;
}

.lead {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}

/* SIDEBAR */

.sidebar {
  position: sticky;
  top: 90px;
  height: fit-content;
}

/* SHARE */

.share-box {
  margin-bottom: 25px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  margin: 0px auto;
  /* Mengatur jarak vertikal */
  list-style: none;
  padding: 0;
}

.share-btn {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 35px;
  /* Lebar lingkaran */
  height: 25px;
  /* Tinggi lingkaran */
  border-radius: 5px;
  /* Membuat bentuk lingkaran */
  color: #fff;
  text-decoration: none;
  padding: 0px;
}

.fb {
  background: #1877f2;
  color: #fff;
}

.tw {
  background: #000;
  color: #fff;
}

.wa {
  background: #25d366;
  color: #fff;
}

/* TRENDING */

.trending-box {
  padding: 15px;
  border-radius: 10px;
  color: #fff;
}

.trending-box h3 {
  margin-bottom: 10px;
}

.trend-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.trend-item img {
  width: 70px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.trend-item h4 {
  font-size: 14px;
}

/* =========================
   RELATED NEWS
========================= */

.related-section {
  margin-top: 50px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.related-card h4 {
  font-size: 15px;
}

.related-card a {
  color: #fff;
  text-decoration: none;
}

.related-card a:hover {
  color: #aaaaaa;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:1024px) {

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

  .sidebar {
    position: static;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:600px) {

  .article-title {
    font-size: 26px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

}

@media(max-width:768px) {

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

  .sidebar {
    position: static;
  }

  .article-header h1 {
    font-size: 26px;
  }

}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 50px;
  background-color: rgba(200, 200, 200, 0.5);
  /* Semi-transparent black background */
  display: flex;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(132, 132, 132, 0.5);
}

.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  content: "";
}

.swiper-button-next::after {
  content: "\276F";
}

.swiper-button-prev::after {
  content: "\276E";
  /* Unicode for left arrow */
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(72, 0, 0, 0.7);
}

.swiper-pagination {
  margin-top: 10px;
  position: relative;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #AA0000;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #AA0000;
}

.vid_short img {
  width: 100%;
}

.vid_short a {
  color: #000;
}

.vid_short a:hover {
  color: #AA0000;
}

.vid_short h4 {
  font-size: 14px;
}

/* PAGE */

.speakup-page,
.category-page {
  padding: 50px 0;

}

.layout-speakup {
  max-width: 1280px;
  margin: auto;
  padding: 40px 20px;
  background: linear-gradient(0, #262626d7, #f3f4f600);
  border-radius: 18px;
}

/* HEADER */

.speakup-title {

  font-size: 40px;
  font-weight: 800;

  margin-bottom: 10px;

}

.speakup-desc {

  font-size: 18px;
  color: #666;

  margin-bottom: 40px;

}

/* FEATURED */

.featured-opinion {
  display: block;
  text-decoration: none;
  color: inherit;
  border-left: 6px solid #ff2a2a;
  padding-left: 24px;
  margin-bottom: 40px;
  transition: .25s;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea28;
}

/* .featured-opinion:hover {
  padding-left: 10px;
} */

.featured-opinion:hover .opinion-label {
  color: #d4d4d4;
}

.opinion-label {

  font-size: 12px;
  font-weight: 700;

  color: #ff2a2a;

  margin-bottom: 12px;

}

.opinion-item {
  display: flex;
  align-items: top;
}

.opinion-item:hover .opinion-title {
  color: #e60023;
}

.featured-opinion:hover .featured-title {
  color: #e60023;
}

.opinion-item img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 16px;
}

.featured-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 14px;
}

.featured-excerpt {

  font-size: 17px;
  color: #555;

  margin-bottom: 18px;

}

/* AUTHOR */

.featured-meta {

  display: flex;
  align-items: center;

  gap: 12px;

}

.author-avatar {

  width: 48px;
  height: 48px;

  border-radius: 50%;

}

/* LIST */

.opinion-item {
  display: block;

  text-decoration: none;

  color: inherit;

  padding: 24px 0;

  border-bottom: 1px solid #eee;

  transition: .2s;
}

.opinion-item:hover {

  padding-left: 10px;

}

.opinion-title {

  font-size: 20px;
  font-weight: 700;

  margin-bottom: 10px;

}

.opinion-excerpt {

  font-size: 16px;
  color: #555;

}

.opinion-meta {

  font-size: 14px;
  color: #888;

  margin-top: 10px;

}

.gerak-page {

  padding: 40px 0;

}


/* HEADER */

.gerak-title {

  font-size: 36px;
  font-weight: 800;

  margin-bottom: 10px;

}

.gerak-desc {

  font-size: 17px;
  color: #666;

  margin-bottom: 30px;

}

/* HERO */

.gerak-hero {

  display: block;

  position: relative;

  border-radius: 14px;

  overflow: hidden;

  margin-bottom: 30px;

}

.gerak-hero img {

  width: 100%;
  height: 420px;

  object-fit: cover;

  transition: transform .4s;

}

.gerak-hero:hover img {

  transform: scale(1.05);

}

/* OVERLAY */

.hero-overlay {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  padding: 24px;

  color: #fff;

  background:
    linear-gradient(transparent,
      rgba(0, 0, 0, .85));

}

.hero-tag {

  background: #16a34a;

  padding: 4px 10px;

  border-radius: 6px;

  font-size: 12px;

}

/* GRID */

.gerak-grid {

  display: grid;

  grid-template-columns:

    repeat(auto-fill, minmax(260px, 1fr));

  gap: 24px;

}

/* CARD */

.gerak-card {

  display: block;

  border-radius: 12px;

  overflow: hidden;

  text-decoration: none;

  color: inherit;

  transition: .25s;
  border: 1px solid #333;

}

.gerak-card:hover {

  transform: translateY(-6px);

}

/* IMAGE */

.gerak-card img {

  width: 100%;
  height: 200px;

  object-fit: cover;

  transition: transform .4s;

}

.gerak-card:hover img {

  transform: scale(1.08);

}

.levelup-page {
  padding: 40px 0;

}


/* HERO */
.level-hero {

  display: grid;

  grid-template-columns: 1.2fr 1fr;

  gap: 40px;

  align-items: center;

  background: linear-gradient(135deg,
      #0f172a,
      #1e293b);

  color: white;

  padding: 40px;

  border-radius: 16px;

  margin-bottom: 40px;
  text-decoration: none;
  border-bottom: 1px solid #eaeaea28;
}

.level-hero:hover {
  border-bottom: 1px solid #e60023;
}

.level-hero:hover .hero-title {
  color: #e60023;
}

.level-hero img {

  width: 100%;

  height: 260px;

  object-fit: cover;

}

.hero-title {

  font-size: 36px;

  font-weight: 800;

  margin: 14px 0;

}

.hero-desc {

  font-size: 17px;

  color: #cbd5e1;

  margin-bottom: 20px;

}

.hero-btn {

  background: white;

  color: #1e3a8a;

  padding: 12px 20px;

  border-radius: 8px;

  text-decoration: none;

  font-weight: 600;

}

/* FEATURED */

.featured-level {

  display: grid;

  grid-template-columns: 1fr 1.2fr;

  gap: 30px;

  border-radius: 14px;

  overflow: hidden;

  margin-bottom: 40px;
  border-bottom: 1px solid #eaeaea28;
  text-decoration: none;

  color: inherit;

  transition: .3s;

}

.featured-level:hover {
  transform: translateY(-6px);

}

.featured-level:hover .featured-title {
  color: #e60023;
}

.featured-left img {

  width: 100%;

  height: 260px;

  object-fit: cover;

}

.badge {

  background: #ff2a2a;
  color: white;

  padding: 4px 10px;

  font-size: 12px;

  border-radius: 6px;

}

.featured-title {

  font-size: 24px;

  font-weight: 800;

  margin: 12px 0;

}

.featured-desc {

  color: #666;

}

/* GRID */
.level-grid {

  display: grid;

  grid-template-columns:

    repeat(auto-fit, minmax(320px, 1fr));

  gap: 24px;
  margin-bottom: 40px;

}

/* CARD */

.level-card {
  display: block;
  border-radius: 12px;
  border: 1px solid #333;
  border-bottom: 1px solid #eaeaea28;
  text-decoration: none;

  color: inherit;

  transition: .25s;
}


.level-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

}

.level-card:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(229, 9, 20, 0.35);
  z-index: 10;
}

.card-category {
  font-size: 14px;
  font-weight: 700;
  color: #ff2a2a;
  padding: 16px;
}


.card-meta {

  font-size: 12px;

  color: #888;

}

.card-content {

  padding: 0px 16px;

}

.card-title {

  font-size: 16px;

  font-weight: 700;

  margin: 10px 0;

}

.card-desc {

  font-size: 14px;

  color: #64748b;

  margin: 8px 0;

}

.card-meta {

  font-size: 12px;

  color: #94a3b8;

}

/* TRENDING */


.card-image {

  position: relative;

  overflow: hidden;

}

.card-image img {

  width: 100%;

  height: 180px;

  object-fit: cover;

  transition: transform .4s ease;

}

.level-card:hover img {

  transform: scale(1.08);

}

.entertain-page {
  padding: 40px 0;

}

/* HEADER */

.entertain-title {

  font-size: 34px;
  font-weight: 800;

}

.entertain-desc {

  color: #64748b;
  margin-bottom: 30px;

}

/* HERO */

.entertain-hero {

  display: grid;

  grid-template-columns: 1.5fr 1fr;

  gap: 24px;

  border-radius: 14px;

  overflow: hidden;

  margin-bottom: 40px;

  text-decoration: none;

  color: inherit;

  transition: .3s;

}

.entertain-hero:hover {

  transform: translateY(-6px);

}


/* SOCIAL GRID */

.social-grid {

  display: grid;

  grid-template-columns:

    repeat(auto-fit, minmax(260px, 1fr));

  gap: 20px;

}

/* TRAVEL GRID */

.travel-grid {

  display: grid;

  grid-template-columns:

    repeat(auto-fit, minmax(280px, 1fr));

  gap: 24px;

}

/* CARD */

.social-card,
.travel-card {

  display: block;

  border-radius: 12px;

  overflow: hidden;

  text-decoration: none;

  color: inherit;

  transition: .3s;
  border: 1px solid #333;
}

.social-card:hover,
.travel-card:hover {

  transform: translateY(-6px);

}

/* SOURCE BADGE */

.card-source {

  position: absolute;

  top: 12px;

  left: 12px;

  background: #000;

  color: white;

  font-size: 12px;

  padding: 4px 10px;

  border-radius: 6px;

}

.hero-image {

  aspect-ratio: 16 / 9;

  overflow: hidden;

}

.hero-image img {

  width: 100%;
  height: 100%;
  object-fit: cover;

}

/* =========================
   GALLERY HOME
========================= */

.gallery-home {
  margin: 50px 0;
}

.gallery-home .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.gallery-home .section-title {
  font-size: 20px;
  font-weight: 800;
}

.gallery-home .section-more {
  font-size: 13px;
  font-weight: 600;
  color: #e11d48;
}

/* ITEM */

.gallery-item {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}

/* IMAGE */

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* CAPTION */

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding: 12px;

  font-size: 14px;
  font-weight: 600;

  color: white;

  background: linear-gradient(to top,
      rgba(0, 0, 0, .85),
      rgba(0, 0, 0, 0));
}

/* SWIPER FIX */

.gallerySwiper {
  overflow: hidden;
}

.gallerySwiper .swiper-slide {
  width: 260px;
}

/* MOBILE */

@media (max-width: 768px) {

  .gallery-item img {
    height: 180px;
  }

}

.news-blog-comments {
  margin-bottom: 30px;
  font-size: 12px;
  /* border-top: 1px solid #ccc; */
  padding: 10px 30px;
  background: linear-gradient(0, #262626d7, #f3f4f600);
}

.news-blog-comments .comments-count {
  font-weight: bold;
  font-size: 16px;
}

.news-blog-comments .comment {
  margin-top: 5px;
  padding: 10px;
  position: relative;
  border-bottom: 1px solid #e1e1e1;
  -webkit-box-shadow: 0px 2px 0px -1px rgba(0, 0, 0, 0.32);
  -moz-box-shadow: 0px 2px 0px -1px rgba(0, 0, 0, 0.32);
  box-shadow: 0px 2px 0px -1px rgba(0, 0, 0, 0.32);
}

.news-blog-comments .comment .comment-img {
  margin-right: 14px;
}

.news-blog-comments .comment .comment-img img {
  width: 50px;
}

.news-blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 700;
}

.news-blog-comments .comment h5 a {
  font-weight: bold;
  color: #4d4643;
  transition: 0.3s;
}

.news-blog-comments .comment .waktu {
  font-size: 10px;
}

.news-blog-comments .comment h5 a:hover {
  color: #AA0000;
}

.news-blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #2b2320;
}

.news-blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.news-blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #bbbbbb;
  margin-bottom: 5px;
  margin: 0px 1vh;
}

.news-blog-comments .comment p {
  display: block;
  font-size: 14px;
}

.news-blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.news-blog-comments .reply-form {
  margin: 10px 0px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: relative;
}

.news-blog-comments .reply-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
  position: absolute;
  width: 100%;
  z-index: 999;
  background-color: #16a34a;
}

.news-blog-comments .reply-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.news-blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0px;
}

.news-blog-comments .reply-form p {
  font-size: 12px;
}

.news-blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  width: 50vh;
  margin: 10px 0px;
}

.news-blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #fe825a;
}

.news-blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  width: 100vh;
}

.news-blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #fe825a;
}

.news-blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.news-blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #AA0000;
}

.news-blog-comments .reply-form .btn-primary:hover {
  background-color: #3a2f2b;
}

.comments-list .d-flex {
  display: flex;
  justify-content: flex-start;
}