.page-news {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background);
}

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 20px 60px;
  box-sizing: border-box;
  overflow: hidden;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 10px;
}

.page-news__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news__main-title {
  font-size: clamp(2em, 5vw, 3.2em);
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.page-news__description {
  font-size: 1.1em;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-news__section {
  padding: 60px 20px;
  box-sizing: border-box;
  text-align: center;
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-news__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: var(--text-main);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.page-news__section-description {
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__news-grid,
.page-news__promo-list,
.page-news__guide-grid,
.page-news__reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-news__news-card,
.page-news__promo-item,
.page-news__guide-item,
.page-news__review-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
}

.page-news__card-image,
.page-news__promo-image,
.page-news__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-news__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__card-title,
.page-news__promo-title,
.page-news__guide-title {
  font-size: 1.4em;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__card-title a,
.page-news__guide-title a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__card-title a:hover,
.page-news__guide-title a:hover {
  color: var(--glow);
}

.page-news__card-date {
  font-size: 0.9em;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.page-news__card-excerpt,
.page-news__promo-text,
.page-news__guide-excerpt {
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-btn {
  display: inline-block;
  background: linear-gradient(180deg, var(--deep-green) 0%, var(--primary-color) 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-top: auto;
}

.page-news__read-more-btn:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--deep-green) 100%);
  transform: translateY(-2px);
}

.page-news__cta-wrapper {
  margin-top: 20px;
  text-align: center;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(var(--glow-rgb), 0.4);
}

.page-news__cta-button--primary {
  background: linear-gradient(180deg, var(--glow) 0%, var(--primary-color) 100%);
  box-shadow: 0 0 15px rgba(var(--glow-rgb), 0.6);
}

.page-news__promo-item {
  text-align: center;
  padding-bottom: 25px;
}

.page-news__promo-item .page-news__promo-image {
  height: 250px;
  margin-bottom: 20px;
}

.page-news__promo-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-news__guide-item {
  padding-bottom: 25px;
}

.page-news__guide-item .page-news__guide-image {
  height: 250px;
  margin-bottom: 20px;
}

.page-news__review-card {
  padding: 30px;
  text-align: center;
  font-style: italic;
}

.page-news__review-text {
  font-size: 1.1em;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-news__reviewer {
  font-weight: bold;
  color: var(--glow);
  font-style: normal;
}

.page-news__vision-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-news__vision-list li {
  background-color: var(--card-bg);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.6;
  border: 1px solid var(--divider);
}

.page-news__list-icon {
  color: var(--glow);
  font-size: 1.2em;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__hero-image {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 10px 15px 40px;
  }

  .page-news__hero-image {
    height: 300px;
  }

  .page-news__main-title {
    font-size: clamp(1.8em, 8vw, 2.8em);
  }

  .page-news__description {
    font-size: 0.95em;
  }

  .page-news__section {
    padding: 40px 15px;
  }

  .page-news__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-news__news-grid,
  .page-news__promo-list,
  .page-news__guide-grid,
  .page-news__reviews-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-news__card-image,
  .page-news__promo-image,
  .page-news__guide-image {
    height: 220px;
  }

  .page-news__card-title,
  .page-news__promo-title,
  .page-news__guide-title {
    font-size: 1.2em;
  }

  .page-news__read-more-btn,
  .page-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  /* Mobile image responsiveness */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__section,
  .page-news__container,
  .page-news__news-card,
  .page-news__promo-item,
  .page-news__guide-item,
  .page-news__review-card,
  .page-news__hero-section,
  .page-news__hero-content,
  .page-news__cta-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-news__cta-button,
  .page-news__cta-button--primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-news__cta-buttons,
  .page-news__button-group,
  .page-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-news__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-news__hero-image {
    height: 200px;
  }

  .page-news__card-image,
  .page-news__promo-image,
  .page-news__guide-image {
    height: 180px;
  }

  .page-news__card-content {
    padding: 15px;
  }

  .page-news__card-title,
  .page-news__promo-title,
  .page-news__guide-title {
    font-size: 1.1em;
  }

  .page-news__section-title {
    font-size: clamp(1.3em, 7vw, 1.8em);
  }

  .page-news__review-text {
    font-size: 1em;
  }
}