.news-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 72px;
  width: 100%;
  background: #ffffff;
}

.news-container {
  max-width: 1392px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

/* Tabs Navigation - Now Vertical */
.news-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 417px;
  min-width: 300px;
  padding-right: 20px;
  border-right: 1px solid #e0e0e0;
}

.news-tab {
  padding: 14px 20px;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
  white-space: normal;
  border-left: 3px solid transparent;
}

.news-tab:hover {
  background: #f6f6f6;
}

.news-tab.active {
  background: #f9f9f9;
  color: #ad2324;
  font-weight: 600;
  border-left: 3px solid #ad2324;
}

/* Main Content Area */
.news-content-container {
  flex: 1;
  width: calc(100% - 340px);
}

.news-content {
  display: none;
  width: 100%;
}

.news-content.active {
  display: block;
  animation: fadeIn 0.5s ease forwards;
}

/* Main Feature */
.news-feature {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 60px;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-feature-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.news-feature-content {
  padding: 30px;
}

.news-feature-title {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 16px;
}

.news-feature-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

/* News Items */
.news-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.news-item {
  display: flex;
  flex-direction: row;
  gap: 40px;
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-item.reverse {
  flex-direction: row-reverse;
}

.news-item-image-container {
  flex: 1;
  max-width: 50%;
}

.news-item-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.news-item-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-item-title {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #000000;
  margin-bottom: 16px;
}

.news-item-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .news-section {
    padding: 50px 60px;
  }

  .news-feature-image {
    height: 350px;
  }

  .news-feature-title {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .news-section {
    padding: 40px 40px;
  }

  .news-container {
    flex-direction: column;
  }

  .news-tabs {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-right: 0;
    padding-bottom: 20px;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .news-tab {
    width: auto;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .news-tab.active {
    border-left: none;
    border-bottom: 3px solid #ad2324;
  }

  .news-content-container {
    width: 100%;
  }

  .news-item {
    flex-direction: column;
  }

  .news-item.reverse {
    flex-direction: column;
  }

  .news-item-image-container {
    max-width: 100%;
  }

  .news-item-image {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .news-section {
    padding: 30px 30px;
  }

  .news-tabs {
    padding-bottom: 15px;
  }

  .news-tab {
    padding: 10px 16px;
    font-size: 14px;
  }

  .news-feature-image {
    height: 280px;
  }

  .news-feature-content {
    padding: 20px;
  }

  .news-feature-title {
    font-size: 24px;
  }

  .news-item-content {
    padding: 20px;
  }

  .news-item-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .news-section {
    padding: 20px 20px;
  }

  .news-tabs {
    gap: 8px;
  }

  .news-tab {
    padding: 8px 12px;
    font-size: 13px;
  }

  .news-feature-image {
    height: 220px;
  }

  .news-feature-title {
    font-size: 22px;
  }

  .news-feature-description,
  .news-item-description {
    font-size: 14px;
    line-height: 21px;
  }
}

.news-title {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 47px;
  color: #000000;
  margin: 0 0 32px 0;
}

.news-card-date {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #767676;
  margin: 0 0 8px 0;
}

.news-card-title {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #000000;
  margin: 0 0 16px 0;
}

.more-news-date {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #767676;
  margin: 0 0 8px 0;
}

.more-news-title {
  font-family: PPNeueMontreal-Regular, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  margin: 0;
}
