/* ===== ANNUAL REPORTS SECTION ===== */
.annual-reports-section {
  background-color: #f9f9f9;
  padding: 96px 0;
}

/* ===== REPORTS LIST ===== */
.annual-reports-list {
  display: flex;
  flex-direction: column;
  gap: 32px; /* 32px gap between each card */
}

/* ===== SINGLE REPORT CARD ===== */
.report-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 1px 2px 0px #0000000d;
  display: flex;
  flex-direction: row;
  align-items: center; /* Center image & content vertically */
  gap: 32px; /* 32px gap between image & content */
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.report-card:hover {
  box-shadow: 0 8px 24px rgba(0, 110, 37, 0.1);
  transform: translateY(-2px);
}

/* ===== IMAGE ===== */
.report-img-wrapper {
  flex-shrink: 0;
}

.report-img-placeholder {
  width: 220px;
  height: 160px;
  background-color: #b5c9b7;
  border-radius: 16px;
  overflow: hidden;
}

.report-img {
  width: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ===== CONTENT ===== */
.report-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 24px 0;
}

/* ===== DATE ===== */
.report-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.report-date-text {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  color: #006e25;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== HEADING ===== */
.report-heading {
  font-size: 20px;
  line-height: 125%;
  font-weight: 700;
  color: #181c20;
  margin: 0 0 12px 0;
}

/* ===== DESCRIPTION ===== */
.report-desc {
  font-size: 14px;
  line-height: 150%;
  color: #3e4a3c;
  margin: 0 0 12px 0;
}

/* ===== BUTTONS ===== */
.report-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.report-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 30px;
  background-color: #ebf3ee;
  border-radius: 12px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  color: #006e25;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}

.report-btn svg {
  transition: stroke 0.25s ease;
  flex-shrink: 0;
}

.report-btn:hover {
  background-color: #006e25;
  color: #ffffff;
}

.report-btn:hover svg {
  stroke: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .annual-reports-section {
    padding: 60px 0;
  }

  .report-img-placeholder,
  .report-img {
    width: 180px;
    height: 140px;
  }

  .report-btn {
    padding: 14px 20px;
  }
}

@media (max-width: 768px) {
  /* Stack image on top of content */
  .report-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  .report-img-placeholder,
  .report-img {
    width: 100%;
    height: 200px;
    border-radius: 12px;
  }

  .report-img-wrapper {
    width: 100%;
  }

  .report-heading {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .annual-reports-section {
    padding: 48px 0;
  }

  .annual-reports-list {
    gap: 20px;
  }

  .report-img-placeholder,
  .report-img {
    height: 180px;
  }

  .report-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .report-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
  }
}
