/* Award Detail Section */
.beach-cleaning-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.beach-cleaning-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.beach-cleaning-image {
  flex-shrink: 0;
  width: 750px;
  max-width: 100%;
  position: sticky;
  top: 200px;
}

.beach-cleaning-image .beachCleaningSwiper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.beachCleaningSwiper .swiper-slide {
  /* Let Swiper set slide width — fixed 750px broke loop offset on load. */
  height: 500px;
}

.beach-cleaning-image .beachCleaningSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.beach-cleaning-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}

.beach-cleaning-nav-btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
}

.beach-cleaning-prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.beach-cleaning-next::after {
  transform: rotate(45deg);
  margin-right: 3px;
}

.beach-cleaning-nav-btn:hover {
  background: rgba(0, 0, 0, 0.55);
}

.beach-cleaning-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.beach-cleaning-prev {
  left: 12px;
}

.beach-cleaning-next {
  right: 12px;
}

.beach-cleaning-image img {
  width: 100%;
  height: auto;
  display: block;
}

.beach-cleaning-content {
  flex: 1;
  min-width: 0;
}

.award-year-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #03489f;
  background: #e8f0fe;
  padding: 6px 14px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.beach-cleaning-title {
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  color: #03489f;
  margin-bottom: 8px;
}

.beach-cleaning-content h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  color: #03489f;
  margin-bottom: 20px;
}

.beach-cleaning-content p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  color: #00243d;
  text-align: left;
  margin-bottom: 16px;
}

.beach-cleaning-content p:last-of-type {
  margin-bottom: 0;
}

.section-heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  color: #03489f;
  margin-top: 28px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  display: inline-block;
}

.beach-cleaning-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.beach-cleaning-list li {
  position: relative;
  padding-left: 27px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  color: #00243d;
  text-align: left;
  margin-bottom: 14px;
}

.beach-cleaning-list li:last-child {
  margin-bottom: 0;
}

.beach-cleaning-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background: url("../../images/alumni-network/bullet-icon.png") no-repeat center / contain;
}

.image-caption {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: #667085;
  margin-top: 8px;
  text-align: center;
}

.external-link {
  margin-top: 24px !important;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.external-link a {
  color: #03489f;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

.external-link a:hover {
  color: #022d66;
}

/* Related Links Grid */
.ei-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 31px;
  margin-top: 60px;
}

.ei-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 20px;
  border-radius: 14px;
  background: #fff6e7;
  text-decoration: none;
  color: #00243d;
  font-size: 14px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ei-link-card:hover {
  box-shadow: 0 4px 16px rgba(0, 36, 61, 0.1);
  transform: translateY(-2px);
}

.ei-link-card span {
  color: var(--Blue-300, #03489f);
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}

.ei-link-card img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .beach-cleaning-layout {
    gap: 28px;
  }

  .beach-cleaning-title {
    font-size: 26px;
  }

  .ei-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .beach-cleaning-layout {
    flex-direction: column;
    gap: 24px;
  }

  .beach-cleaning-image {
    width: 100%;
    position: static;
  }

  .beach-cleaning-title {
    font-size: 24px;
  }

  .ei-links-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 36px;
  }
}

@media (max-width: 479px) {
  .beach-cleaning-section {
    margin-top: 36px;
    margin-bottom: 36px;
  }

  .beach-cleaning-title {
    font-size: 22px;
  }

  .beach-cleaning-content h3 {
    font-size: 18px;
  }

  .award-year-badge {
    font-size: 12px;
    padding: 14px 10px;
  }

  .ei-links-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .ei-link-card {
    padding: 14px 16px;
    font-size: 13px;
  }

  .ei-link-card span {
    font-size: 14px;
  }
}