* {
  margin: 0;
  padding: 0;
}

:root {
  --panel-radius: 12px;
  --card-width: 320px;
  --card-gap: 22px;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #fff;
}

/* SECTION */
.news-section {
  padding: 48px 6vw;
  /* background: url("../images/Rectangle\ 328\ \(1\).png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; */

  background: url("../images/Rectangle\ 264.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.news-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT CONTENT */
.news-left h2 {
  font-size: 44px;
  margin-bottom: 14px;
  font-weight: 700;
  color: #fff;
}

.news-left p {
  max-width: 300px;
  margin-bottom: 28px;
  font-size: 15px;
  opacity: 0.9;
    color: #fff;
}

.news-controls {
  display: flex;
  gap: 18px;
}

.circle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.08);
}

.circle-btn svg {
  width: 18px;
  height: 18px;
  color: #163b79;
}

/* CAROUSEL */
.carousel-wrap {
  position: relative;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: var(--card-gap);
  will-change: transform;
}

.card {
  width: var(--card-width);
  min-width: var(--card-width);
  border-radius: var(--panel-radius);
  overflow: hidden;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 300px;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}

.card-content {
  position: relative;
  z-index: 2;
}

.card h3 {
  font-size: 18px;
  margin: 0 0 8px 0;
  color: #fff;
}
.card .meta {
  font-size: 12px;
  opacity: 0.85;
  margin-bottom: 10px;
  color: #fff;
}
.card p {
  font-size: 14px;
  max-height: 68px;
  overflow: hidden;
  color: #fff;

}
.cta {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  background: #13388a;
  border-radius: 6px;
  text-decoration: none;
  color: white;
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 960px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-left {
    order: 2;
  }
  :root {
    --card-width: 280px;
  }
}
@media (max-width: 520px) {
  :root {
    --card-width: 240px;
  }
  .news-left h2 {
    font-size: 32px;
  }
}
