.news-section {
  padding: 90px 44px;
  background: var(--white);
  overflow: hidden;
}

.news-container {
  width: min(1500px, 100%);
  margin: 0 auto;
}

.news-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.section-eyebrow span {
  width: 52px;
  height: 4px;
  background: var(--orange);
  border-radius: 99px;
  flex-shrink: 0;
}

.news-header h2 {
  color: var(--black);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 900;
  margin-bottom: 16px;
}

.news-header p {
  color: var(--text);
  font-size: 22px;
  line-height: 1.45;
}

.news-all-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 285px;
  padding: 22px 28px;
  margin-top: 24px;
  color: var(--orange);
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.news-all-button:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.news-slider {
  position: relative;
}

.news-viewport {
  overflow: hidden;
  width: calc(100% - 120px);
  margin: 0 auto;
}

.news-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.news-card {
  flex: 0 0 calc(100% / 3);
  padding: 0 13px;
}

.news-card-inner {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.news-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.1);
}

.news-image {
  width: 100%;
  height: 330px;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-content {
  padding: 0 24px 30px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.news-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 17px;
  color: var(--white);
  background: var(--orange);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.news-divider {
  width: 1px;
  height: 24px;
  background: #a87358;
  opacity: 0.75;
}

.news-category {
  color: #714021;
  font-size: 17px;
  font-weight: 500;
}

.news-title {
  color: var(--black);
  font-size: 25px;
  line-height: 1.18;
  letter-spacing: -0.04em;
  font-weight: 900;
  margin-bottom: 13px;
}

.news-description {
  color: #51413d;
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 26px;
}

.news-detail {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--orange);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.news-detail span {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.news-detail:hover span {
  transform: translateX(4px);
}

.news-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.news-arrow:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
}

.news-arrow-left {
  left: 0;
}

.news-arrow-right {
  right: 0;
}

.news-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}

.news-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.news-dot {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 61, 0, 0.22);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.news-dot.active {
  background: var(--orange);
  transform: scale(1.1);
}

.news-counter {
  display: none;
  color: var(--orange);
  font-size: 17px;
  font-weight: 800;
}

.news-loading,
.news-empty {
  width: 100%;
  padding: 40px 20px;
  color: var(--text);
  text-align: center;
  font-size: 18px;
}