/* News Section */
.news {
  padding: 120px 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;

  @media (max-width: 1024px) {
    padding: 100px 0;
  }

  @media (max-width: 425px) {
    padding: 60px 0;
  }
}

.news-container {
  max-width: 1280px;
  width: 100%;
  padding: 0 64px;

  @media (max-width: 425px) {
    padding: 0 24px;
  }
}

.news-title-large {
  font-weight: 700;
  font-size: 72px;
  line-height: 86px;
  letter-spacing: -1.44px;
  color: #000000;
  text-align: center;

  @media (max-width: 1024px) {
    font-size: 42px;
    line-height: 50px;
    letter-spacing: -0.84px;
  }

  @media (max-width: 425px) {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -0.64px;
  }
}

.news-grid {
  margin: 65px 0 48px;
  padding: 0 40px;
  display: flex;
  gap: 32px;

  @media (max-width: 1024px) {
    margin: 100px 0 48px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 425px) {
    padding: 0;
  }
}

.news-item {
  height: 452px;
  min-width: 320px;
  max-width: 388px;
  width: 100%;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.02),
    0px 12px 32px 0px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;

  display: flex;
  flex-direction: column;
  gap: 24px;

  @media (max-width: 1024px) {
    padding: 24px;
    gap: 20px;
    min-width: 248px;
    max-width: 248px;
  }

  @media (max-width: 425px) {
    min-width: unset;
    max-width: unset;
    padding: 32px;
    gap: 24px;
  }
}

.news-item:hover {
  transform: translateY(-4px);
}

.news-image {
  width: 100%;
  height: 230px;
  overflow: hidden;

  @media (max-width: 1024px) {
    height: 178px;
    min-height: 178px;
  }

  @media (max-width: 425px) {
    height: 100%;
    min-height: 230px;
  }
}

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

.news-date {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.09px;

  @media (max-width: 1024px) {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.08px;
  }
}

.news-title {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -0.08px;
}

.news-more {
  display: flex;
  justify-content: center;
}

.news-more .btn-outline {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  border-radius: 24px;
  padding: 11px 40px;
  height: 40px;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.08px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}