/* News Hero */
.news-hero {
  position: relative;
  width: 100%;
  min-height: 15vh;
  padding: 120px 20px 30px;
  background: linear-gradient(90deg, rgba(31, 127, 149, 0.10) 0%, rgba(110, 169, 248, 0.10) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.news-hero__content {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-hero__title {
  color: #1F7F95;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.35px;
}

.news-hero__subtitle {
  color: #5C5F30;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  max-width: 689px;
  margin: 0 auto;
}

/* Latest News */
.latest-news {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.80);
  padding: 32px 70px;
}

.latest-news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.latest-news__title {
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.40px;
}

.latest-news__nav {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 40px;
  height: 40px;
  background: #1F7F95;
  border-radius: 999px;
  border: none;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
}

.nav-btn.prev::after {
  transform: rotate(135deg);
}

.nav-btn.next::after {
  transform: rotate(-45deg);
}

.latest-news__slider {
  display: flex;
  gap: 16px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.news-card {
  min-width: 100%;
  max-width: 100%;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.news-card h3 {
  color: #1F7F95;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.07px;
  max-width: 100%;
  word-wrap: break-word;
}

.news-card p {
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  max-width: 100%;
  word-wrap: break-word;
}

.news-card * {
  max-width: 100%;
  overflow-wrap: break-word;
}

.card-green,
.card-blue,
.card-orange,
.card-teal,
.card-mix {
  background: linear-gradient(135deg, rgba(131, 199, 206, 0.20), rgba(110, 169, 248, 0.20));
}

/* Latest News Dots */
section.latest-news .latest-news__dots {
  display: flex !important;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

section.latest-news .latest-news__dots span {
  width: 8px;
  height: 8px;
  background: rgba(31, 127, 149, 0.30) !important;
  border-radius: 999px;
  display: block;
}

section.latest-news .latest-news__dots span.active {
  width: 32px;
  background: #1F7F95 !important;
}

/* Articles */
.articles {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 70px;
  background: linear-gradient(135deg, rgba(131, 199, 206, 0.05), rgba(110, 169, 248, 0.05));
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.articles__title {
  color: #1F7F95;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.37px;
}

.articles__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
}

.article-card img {
  width: 180px;
  height: 120px;
  object-fit: cover;
}

.article-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.article-date {
  color: #6EA9F8;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.article-content h3 {
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.07px;
}

.article-intro {
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-body {
  display: none;
}

.read-more {
  margin-top: auto;
  color: #1F7F95;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

/* Events */
.events {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 70px;
  background: linear-gradient(135deg, rgba(241, 176, 102, 0.05) 0%, rgba(179, 207, 109, 0.05) 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.events__title {
  color: #1F7F95;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.37px;
}

.events__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
  display: flex;
  gap: 16px;
}

.event-card__img {
  width: 200px;
  height: 140px;
  object-fit: cover;
}

.event-card__content {
  padding: 12px 12px 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-card__title {
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.07px;
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #5C5F30;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 16px;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-icon {
  width: 14px;
  height: 14px;
}

.event-card__text {
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card__btn {
  width: fit-content;
  background: #457A00;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  padding: 6px 16px;
  border-radius: 4px;
  text-decoration: none;
}

/* Press */
.press {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 70px;
  background: rgba(255, 255, 255, 0.80);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.press__title {
  color: #1F7F95;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.37px;
}

.press__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.press-card {
  background: linear-gradient(135deg, rgba(179, 207, 109, 0.10) 0%, rgba(131, 199, 206, 0.10) 100%);
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.press-card__img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.press-card__content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.press-card__date {
  color: #6EA9F8;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  line-height: 14px;
}

.press-card__heading {
  color: #1F7F95;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.press-card__text {
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
  .latest-news,
  .articles,
  .events,
  .press {
    padding: 24px 32px;
  }
}

@media (max-width: 768px) {
  .news-hero__title {
    font-size: 36px;
    line-height: 40px;
  }

  .news-hero__subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .latest-news,
  .articles,
  .events,
  .press {
    padding: 24px 20px;
  }

  .article-card {
    flex-direction: column;
  }

  .article-card img {
    width: 100%;
    height: 140px;
  }

  .event-card {
    flex-direction: column;
  }

  .event-card__img {
    width: 100%;
  }
}

/* Slide-in animations */
.slide-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

/* Partner With Us Section */
.partner-with-us {
  position: relative;
  background: rgba(31, 127, 149, 0.03);
  border-radius: 24px;
  outline: 1px solid rgba(31, 127, 149, 0.19);
  outline-offset: -1px;
  overflow: hidden;
  margin: 96px auto 96px;
  max-width: 800px;
  padding: 49px 64px;
}

.partner-deco-top {
  position: absolute;
  width: 128px;
  height: 128px;
  top: 1px;
  right: 1px;
  background: linear-gradient(135deg, transparent 50%, rgba(110, 169, 248, 0.06) 50%);
}

.partner-deco-bottom {
  position: absolute;
  width: 128px;
  height: 128px;
  bottom: 217px;
  left: 1px;
  background: linear-gradient(315deg, transparent 50%, rgba(179, 207, 109, 0.06) 50%);
}

.partner-content {
  text-align: center;
}

.partner-icon {
  width: 64px;
  height: 64px;
  background: #1F7F95;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.partner-icon svg {
  width: 32px;
  height: 32px;
}

.partner-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #0A0A0A;
  margin-bottom: 24px;
}

.partner-description {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #000000;
  margin-bottom: 32px;
}

.partner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-partner-primary {
  padding: 10px 24px;
  background: #1F7F95;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-partner-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(31, 127, 149, 0.3);
}

.btn-partner-secondary {
  padding: 10px 24px;
  background: white;
  color: #1F7F95;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 8px;
  border: 1px solid #1F7F95;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-partner-secondary:hover {
  background: rgba(31, 127, 149, 0.05);
  transform: translateY(-2px);
}

/* ==========================================================================
   Article page (article1.html)
   ========================================================================== */

.article-hero {
  background: #1F7F95;
  padding: 140px 48px 48px;
  color: white;
}

.article-hero-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
}

.article-hero-subtitle {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.85);
}

.article-content-wrapper {
  max-width: 896px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  background: white;
}

.article-callout {
  padding: 16px 20px;
  margin-bottom: 32px;
  border-radius: 4px;
  background: rgba(131, 199, 206, 0.10);
  border-left: 4px solid #6EA9F8;
  color: #1E2939;
  font-size: 18px;
  line-height: 29px;
}

.article-section-title {
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid #BF9270;
  color: #5C5F30;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.07px;
}

.article-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 4px solid #B3CF6D;
  margin-bottom: 32px;
}

.article-image.accent-cyan {
  border-color: #83C7CE;
}

.article-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.article-checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.checklist-mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #B3CF6D;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checklist-body h3 {
  color: #457A00;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin-bottom: 4px;
}

.checklist-body p {
  color: #364153;
  font-size: 16px;
  line-height: 26px;
}

.article-advantage-box {
  padding: 24px 24px 24px 28px;
  margin-bottom: 32px;
  border-radius: 0 4px 4px 0;
  background: rgba(241, 176, 102, 0.20);
  border-left: 4px solid #F1B066;
}

.article-advantage-box h3 {
  color: #5C5F30;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.article-advantage-box p {
  color: #364153;
  font-size: 16px;
  line-height: 26px;
}

.process-intro {
  color: #364153;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.process-card {
  padding: 24px 20px;
  border-radius: 4px;
  border-top: 4px solid;
}

.process-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.process-card p {
  color: #4A5565;
  font-size: 14px;
  line-height: 22.75px;
}

.process-card.step-1 {
  background: rgba(110, 169, 248, 0.10);
  border-color: #6EA9F8;
}

.process-card.step-1 h3 {
  color: #1F7F95;
}

.process-card.step-2 {
  background: rgba(131, 199, 206, 0.10);
  border-color: #83C7CE;
}

.process-card.step-2 h3 {
  color: #1F7F95;
}

.process-card.step-3 {
  background: rgba(179, 207, 109, 0.10);
  border-color: #B3CF6D;
}

.process-card.step-3 h3 {
  color: #457A00;
}

.process-card.step-4 {
  background: rgba(241, 176, 102, 0.10);
  border-color: #F1B066;
}

.process-card.step-4 h3 {
  color: #5C5F30;
}

.article-closing p {
  color: #364153;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
}

.article-cta-box {
  padding: 32px;
  margin-top: 16px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(31, 127, 149, 0.10) 0%, rgba(179, 207, 109, 0.10) 100%);
  outline: 1px solid #83C7CE;
  outline-offset: -1px;
}

.article-cta-box h3 {
  color: #457A00;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.article-cta-box p {
  color: #364153;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 12px;
}

.article-cta-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Press release layout (press-release-seed-investment.html)
   ========================================================================== */

.pr-content-wrapper {
  width: 100%;
  min-height: 100vh;
  background: #F7F4EF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 0 40px;
}

.pr-container {
  width: 1025px;
  max-width: 100%;
  padding: 80px 48.5px;
  display: flex;
  flex-direction: column;
}

.pr-columns {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 40px;
  align-items: start;
}

.pr-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.pr-sidebar {
  width: 240px;
}

@media (max-width: 900px) {
  .pr-columns {
    grid-template-columns: 1fr;
  }

  .pr-sidebar {
    width: 100%;
  }
}

.pr-dateline {
  color: #5C5F30;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pr-divider {
  width: 48px;
  height: 3px;
  background: #B3CF6D;
  margin-bottom: 24px;
}

.pr-headline {
  max-width: 624px;
  color: #1A1A18;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 20px;
}

.pr-dek {
  max-width: 624px;
  color: #457A00;
  font-size: 16px;
  font-style: italic;
  line-height: 26px;
  margin-bottom: 32px;
}

.pr-numbered-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.pr-numbered-list li {
  display: flex;
  gap: 20px;
}

.pr-item-number {
  flex-shrink: 0;
  width: 24px;
  padding-top: 6px;
  text-align: right;
  color: #83C7CE;
  font-size: 12px;
  font-weight: 500;
}

.pr-item-text {
  color: #2A2A22;
  font-size: 16px;
  line-height: 26px;
}

.pr-quote {
  padding: 4px 0 4px 20px;
  border-left: 2px solid #F1B066;
  color: #3A3020;
  font-style: italic;
  font-size: 16px;
  line-height: 26px;
}

.pr-section-divider {
  width: 100%;
  max-width: 624px;
  height: 1px;
  background: rgba(31, 127, 149, 0.18);
  margin: 8px 0 32px;
}

.pr-boilerplate-label,
.pr-contact-label {
  color: #5C5F30;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.pr-boilerplate-text {
  max-width: 624px;
  color: #444438;
  font-size: 14px;
  line-height: 22.75px;
  margin-bottom: 8px;
}

.pr-boilerplate-link {
  color: #1F7F95;
  font-size: 12px;
}

.pr-contact-box {
  max-width: 624px;
  margin-top: 40px;
  padding: 20px;
  border-radius: 8px;
  background: rgba(131, 199, 206, 0.12);
  outline: 1px solid rgba(31, 127, 149, 0.20);
  outline-offset: -1px;
}

.pr-contact-name {
  color: #2A2A22;
  font-size: 14px;
  font-weight: 500;
}

.pr-contact-email {
  color: #1F7F95;
  font-size: 14px;
}

.pr-sidebar-widget {
  border-radius: 8px;
  overflow: hidden;
  outline: 1px solid rgba(31, 127, 149, 0.25);
  outline-offset: -1px;
  margin-bottom: 24px;
}

.pr-widget-header {
  padding: 12px 20px;
  background: #1F7F95;
  color: rgba(255, 255, 255, 0.90);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pr-widget-row {
  padding: 16px 20px;
  background: white;
  border-bottom: 1px solid rgba(31, 127, 149, 0.18);
}

.pr-widget-row:last-child {
  border-bottom: none;
}

.pr-widget-label {
  color: #83C7CE;
  font-size: 12px;
  margin-bottom: 4px;
}

.pr-widget-value {
  color: #1A1A18;
  font-size: 16px;
  font-weight: 500;
}

.pr-trl-widget {
  padding: 20px;
  border-radius: 8px;
  background: #F7F4EF;
  outline: 1px solid rgba(31, 127, 149, 0.25);
  outline-offset: -1px;
}

.pr-trl-label {
  color: #5C5F30;
  font-size: 12px;
  margin-bottom: 12px;
}

.trl-bar {
  display: flex;
  gap: 4px;
}

.trl-bar span {
  flex: 1;
  height: 8px;
  border-radius: 6px;
  background: rgba(31, 127, 149, 0.15);
}

.trl-bar span.filled {
  background: #1F7F95;
}

.trl-bar span.current {
  background: #B3CF6D;
}

.trl-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
}

.trl-labels .trl-start,
.trl-labels .trl-end {
  color: #83C7CE;
}

.trl-labels .trl-current {
  color: #457A00;
  font-weight: 500;
}
