/* ============================================================
   PT BADAK LNG — INDEX (HOMEPAGE) STYLES
   ============================================================ */

/* ── 7. HERO SLIDER ───────────────────────────────────────── */
#hero {
  position: relative;
  height: clamp(500px, 46vw, 820px);
  overflow: hidden;
  padding: 0 !important;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

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

/* Slide 1 — fit full wide banner without cropping */
.slide:nth-child(1) {
  background-color: #29aad4; /* sky blue matching image top edge */
}

.slide:nth-child(1) .slide-bg {
  background-image: url("../Src/hero-proper-emas.png");
  background-size: 100% auto;
  background-position: left top;
  background-repeat: no-repeat;
}
.slide:nth-child(2) .slide-bg {
  background-image: url("../Src/hero-bg.jpg");
}
.slide:nth-child(3) .slide-bg {
  background-image: url("../Src/hero-bg-2.jpg");
}
.slide:nth-child(4) .slide-bg {
  background-image: url("../Src/hero-bg-3.jpg");
}
.slide:nth-child(5) .slide-bg {
  background-image: url("../Src/hero-bg-4.jpg");
}

/* ── Slide 1 English overlay ───────────────────────────────── */
.slide1-en-overlay {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 55%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 4% 40px 5%;
  background:
    radial-gradient(ellipse 50% 30% at 10% 20%, rgba(255,255,255,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 32% 10%, rgba(255,255,255,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 25% 18% at 18% 58%, rgba(255,255,255,0.22) 0%, transparent 60%),
    linear-gradient(to right,
      #35b5de 0%,
      #35b5de 72%,
      rgba(53,181,222,0.9) 80%,
      rgba(53,181,222,0.55) 90%,
      transparent 100%
    );
}

.slide1-en-overlay::after {
  content: '';
  position: absolute;
  top: 0; right: -80px; bottom: 0;
  width: 160px;
  background: radial-gradient(ellipse 50% 55% at 25% 45%, rgba(180,230,248,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.s1-pretitle {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin: 0 0 6px;
  letter-spacing: 0.3px;
}

.s1-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.8vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.s1-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  margin: 0 0 14px;
}

.s1-quote {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(11px, 0.85vw, 13px);
  font-style: italic;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.55) 0%,
    transparent 60%
  );
}

.slide-content {
  position: absolute;
  bottom: 60px;
  left: 5%;
  color: #fff;
  max-width: 600px;
}

.slide-content .slide-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 10px;
}

.slide-content h2 {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.slide-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* Slider arrows */
.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-arrow:hover {
  background: rgba(255, 255, 255, 0.4);
}
.slide-arrow.prev {
  left: 20px;
}
.slide-arrow.next {
  right: 20px;
}

/* Slider dots */
.slide-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: white;
}

/* ── 8. STATS BAR ─────────────────────────────────────────── */
#stats {
  background: var(--navy);
  padding: 64px 5%;
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse at 30% 50%,
      rgba(0, 87, 168, 0.12) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(0, 87, 168, 0.08) 0%,
      transparent 60%
    );
}

#stats::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--teal) 30%,
    var(--teal-mid) 50%,
    var(--teal) 70%,
    transparent 100%
  );
}

.stats-grid {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.stat-item {
  padding: 20px 16px;
}
.stat-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  color: var(--teal-mid);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── 10. ABOUT ────────────────────────────────────────────── */
#about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

#about::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 87, 168, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.about-desc {
  max-width: 720px;
  margin: 0 auto;
}

.about-points {
  margin: 44px auto 0;
  max-width: 900px;
}

.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid rgba(0, 87, 168, 0.1);
  background: rgba(0, 87, 168, 0.02);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.about-point:hover {
  border-color: rgba(0, 87, 168, 0.25);
  box-shadow: 0 4px 20px rgba(0, 87, 168, 0.08);
}

.about-point-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 17px;
}

.about-point h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.about-point p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── 11. AT GLANCE ────────────────────────────────────────── */
.at-glance-section {
  padding: 0;
  margin: 0;
  line-height: 0;
}

.at-glance-section img {
  width: 100%;
  height: auto;
}

/* ── 12. ONE PERTAMINA VALUES (Hover Cards) ───────────────── */
#values {
  background: #555555 url('/Src/world-map.svg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

#values .section-tag,
#values .section-title,
#values .section-desc {
  color: #fff;
}


.op-hc-grid {
  margin-top: 40px;
}

.op-hc-card {
  position: relative;
  overflow: hidden;
  height: 460px;
  cursor: pointer;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  background-image: url('/Src/engineer-bg.png');
  background-size: 400% auto;
  background-repeat: no-repeat;
}

/* Setiap kartu tampilkan bagian berbeda dari gambar — efek puzzle */
.op-serve  { background-position: 0% 20%; }
.op-look   { background-position: 33.33% 20%; }
.op-vision { background-position: 66.66% 20%; }
.op-kolab  { background-position: 100% 20%; }

.op-hc-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #555555 url('/Src/world-map.svg') center/cover no-repeat;
  padding: 20px 18px 20px;
  transform: translateY(calc(100% - 130px));
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.op-hc-card:hover .op-hc-overlay {
  transform: translateY(0);
}

/* Logo wrap — cream background full-width */
.op-hc-logo-wrap {
  background: #ffffff;
  margin: -20px -18px 0;
  padding: 16px 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  flex-shrink: 0;
}

/* Logo image di bagian atas overlay (selalu terlihat) */
.op-hc-logo {
  display: block;
  width: 70%;
  max-width: 180px;
  object-fit: contain;
}

.op-hc-divider {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin: 10px 0 12px;
}
.op-hc-desc-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.op-hc-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin: 0 0 10px;
  font-weight: 400;
  text-align: justify;
}
.op-hc-tagline {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  border-left: 3px solid #f5a642;
  background: rgba(255,255,255,0.07);
  color: #fad09a;
  text-align: justify;
}

/* Tagline pin ke bawah untuk kartu 2, 3, 4 */
.op-look .op-hc-tagline,
.op-vision .op-hc-tagline,
.op-kolab .op-hc-tagline {
  margin-top: auto;
}

/* ── 13. ACHIEVEMENTS ─────────────────────────────────────── */
#achievements {
  background: #555555 url('/Src/world-map.svg') center center / cover no-repeat;
}

.achievements-grid {
  /* layout handled by Bootstrap row/col */
}

.achievement-card {
  border-radius: 16px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 87, 168, 0.2);
  border-top: 3px solid var(--teal);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.achievement-card:hover {
  background: rgba(0, 87, 168, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.achievement-year {
  font-size: 10px;
  font-weight: 600;
  color: var(--teal-mid);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.achievement-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
}
.achievement-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
}

/* ── 14. HISTORY TIMELINE ─────────────────────────────────── */
#history {
  background: var(--light-gray);
}

.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding: 0 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--teal) 10%,
    var(--teal-dark) 90%,
    transparent
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  gap: 28px;
  margin-bottom: 48px;
  align-items: center;
}

.timeline-text {
  background: white;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 87, 168, 0.1);
}

.timeline-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.timeline-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.timeline-item:nth-child(odd) .timeline-text {
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-text {
  order: 3;
  text-align: left;
}
.timeline-item:nth-child(even) .timeline-empty {
  order: 1;
}
.timeline-item:nth-child(even) .timeline-dot {
  order: 2;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 9.5px;
  text-align: center;
  line-height: 1.2;
  justify-self: center;
  box-shadow: 0 0 0 6px rgba(0, 87, 168, 0.1), 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
}

/* ── 15. NEWS SECTION (PETRONAS Style) ────────────────────── */
#news {
  background: #fff;
  padding: 96px 0;
}

.news-top-header {
  margin-bottom: 40px;
}

.news-main-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}

.news-main-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ── Layout: featured + right 2-col grid ── */
.news-layout {
  display: flex;
  gap: 16px;
  align-items: stretch;
  min-height: 420px;
}

/* ── Shared card base (featured + side cards) ── */
.nfc,
.nsc-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nfc:hover,
.nsc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
  color: #fff;
}

/* Featured: left column — stretches full height of side-wrap */
.nfc {
  flex: 0 0 40%;
  min-height: 0;
  align-self: stretch;
}

/* Right wrapper: cards stack on top, controls sit at bottom */
.news-side-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Background image */
.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.nfc:hover .card-bg,
.nsc-card:hover .card-bg {
  transform: scale(1.05);
}

/* Placeholder gradient (PETRONAS-inspired teal-blue) */
.card-ph {
  background: linear-gradient(
    145deg,
    #006e7f 0%,
    #00a8a8 30%,
    #0088cc 60%,
    #004d99 100%
  );
}

/* Gradient overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 8, 24, 0.9) 0%,
    rgba(0, 8, 24, 0.3) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

/* Top bar: badge + read more */
.card-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 14px 18px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.32) 0%,
    transparent 100%
  );
}

.card-top.has-badge {
  justify-content: space-between;
}

.card-badge {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  background: var(--teal);
  color: #fff;
}

.card-readmore {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s, gap 0.2s;
}

.nfc:hover .card-readmore,
.nsc-card:hover .card-readmore {
  color: #fff;
  gap: 7px;
}

/* Bottom info */
.card-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 22px;
}

.card-foot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  gap: 8px;
}

.card-cat {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-date {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
}

.card-title {
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nfc-ttl {
  font-size: clamp(14px, 1.5vw, 17px);
  -webkit-line-clamp: 3;
}
.nsc-ttl {
  font-size: 13px;
  -webkit-line-clamp: 2;
}

/* ── Right: 2-column grid (takes remaining space above controls) ── */
.news-right {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 16px;
  min-height: 260px;
}

/* Side cards: fill grid row height */
.nsc-card {
  display: none;
  min-height: 0;
}
.nsc-card.vis {
  display: block;
}

/* ── Controls row: sits at bottom of news-side-wrap ── */
.news-ctrl-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.news-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.news-arrow:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.news-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cdd5df;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}

.news-dot.active {
  background: var(--navy);
  width: 22px;
  border-radius: 4px;
}

.news-viewall-btn {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  padding: 8px 20px;
  border: 2px solid var(--teal-dark);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.news-viewall-btn:hover {
  background: var(--teal-dark);
  color: #fff;
}

/* ── News section scroll enter/exit animation ── */
#news .news-top-header,
#news .news-layout {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

#news .news-layout {
  transition-delay: 0.12s; /* sedikit terlambat setelah header */
}

#news .news-top-header.ns-in,
#news .news-layout.ns-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Side card slide transition ── */
.nsc-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .news-layout { flex-direction: column; }
  .nfc { flex: none; min-height: 320px; align-self: auto; }
  .news-side-wrap { gap: 12px; }
  .news-right { min-height: 200px; }
  .news-right {
    grid-template-columns: 1fr 1fr;
  }
  .nsc-card {
    min-height: 260px;
  }
}

@media (max-width: 575px) {
  #news {
    padding: 60px 0;
  }
  .nfc {
    min-height: 280px;
  }
  .news-right {
    grid-template-columns: 1fr;
  }
  .news-ctrl-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .news-viewall-btn {
    margin-left: 0;
  }
}

/* ── Mobile: One Pertamina cards height adjust ────────────── */
@media (max-width: 767px) {
  .op-hc-card {
    height: 400px;
  }
  .op-hc-overlay {
    transform: translateY(calc(100% - 100px));
  }
}

/* ── Mobile: Timeline → single column ────────────────────── */
@media (max-width: 767px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }
  .timeline-empty {
    display: none !important;
  }
  .timeline-dot {
    width: 44px;
    height: 44px;
    font-size: 8px;
    justify-self: start;
    order: 1;
  }
  .timeline-item:nth-child(odd) .timeline-text {
    text-align: left;
    order: 2;
  }
  .timeline-item:nth-child(even) .timeline-dot {
    order: 1;
  }
  .timeline-item:nth-child(even) .timeline-text {
    order: 2;
    text-align: left;
  }
}

/* ── Mobile: Hero ─────────────────────────────────────────── */
@media (max-width: 575px) {
  #hero {
    height: 380px;
  }
  .slide-content h2 {
    font-size: 20px;
  }
  .slide-content p {
    display: none;
  }
}

/* =============================================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================================================= */

/* Slide 1 English overlay - reduce top padding on mobile */
@media (max-width: 767px) {
  .slide1-en-overlay {
    padding-top: 80px;
    width: 75%;
  }
  .s1-title {
    font-size: clamp(18px, 5vw, 28px);
  }
  .s1-quote {
    display: none;
  }
}

@media (max-width: 480px) {
  .slide1-en-overlay {
    width: 90%;
    padding-top: 75px;
    padding-left: 4%;
  }
  .s1-sub {
    display: none;
  }
}

/* Stats bar - stack on mobile */
@media (max-width: 767px) {
  .stat-divider {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
}

/* One Pertamina cards - full width on mobile */
@media (max-width: 575px) {
  .op-hc-card {
    height: 360px;
  }
  .op-hc-overlay {
    transform: translateY(calc(100% - 90px));
  }
}

/* News section mobile padding */
@media (max-width: 575px) {
  .nfc {
    min-height: 260px;
  }
  .nc-title {
    font-size: 17px;
  }
}
