.volunteers-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Volunteers Video Cards */
.volunteers-videos-section {
  padding: 60px 0;
}
.volunteers-videos-grid {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}
.volunteers-video-card {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 50px 40px;
}
.volunteers-video-thumbnail {
  display: block;
  position: relative;
  aspect-ratio: 924 / 518;
  border-radius: 11px;
  overflow: hidden;
  cursor: pointer;
}
.volunteers-video-thumbnail iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 11px;
}
.volunteers-video-thumbnail img {
  position: absolute;
  inset: 0;
  width: 101.73%;
  height: 102.9%;
  left: -0.87%;
  top: -1.35%;
  max-width: none;
  object-fit: cover;
  border-radius: 11px;
}
.volunteers-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 11px;
}
.volunteers-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.volunteers-video-play i {
  color: #222;
  font-size: 28px;
  margin-left: 4px;
}
.volunteers-video-thumbnail:hover .volunteers-video-play {
  background: #fff;
}
.volunteers-video-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.volunteers-video-category i {
  color: #c64239;
  font-size: 28px;
  flex-shrink: 0;
}
.volunteers-video-category span {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 400;
  color: #222;
  line-height: 36px;
}
.volunteers-video-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.volunteers-video-author {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 28px;
  margin: 0;
}
.volunteers-video-description {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 28px;
  margin: 0;
}
@media (max-width: 768px) {
  .volunteers-videos-grid {
    flex-direction: column;
    gap: 30px;
  }
  .volunteers-video-card {
    padding: 30px 20px;
    gap: 24px;
  }
  .volunteers-video-category span {
    font-size: 24px;
  }
  .volunteers-video-author,
  .volunteers-video-description {
    font-size: 18px;
  }
}

/* Award Section */
.volunteers-award-section {
  background: #1a2243;
  padding: 110px 0;
  overflow: hidden;
}
.volunteers-award-inner {
  padding: 0 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.volunteers-award-caption {
  font-family: "Raleway", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 28px;
  text-align: center;
  margin: 0;
}
.volunteers-award-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1580 / 903;
}
.volunteers-award-photo {
  position: absolute;
  left: 17.92%;
  top: 0;
  width: 64.16%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.volunteers-award-flag {
  position: absolute;
  left: -4.18%;
  top: 65.4%;
  width: 47.35%;
  height: auto;
  transform: rotate(1.02deg);
  transform-origin: bottom left;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .volunteers-award-inner {
    padding: 0 80px;
  }
}
@media (max-width: 768px) {
  .volunteers-award-section {
    padding: 60px 0;
  }
  .volunteers-award-inner {
    padding: 0 20px;
  }
  .volunteers-award-caption {
    font-size: 16px;
  }
  .volunteers-award-media {
    aspect-ratio: auto;
  }
  .volunteers-award-photo {
    position: static;
    width: 100%;
    height: auto;
    display: block;
  }
  .volunteers-award-flag {
    display: none;
  }
}

/* Instructors Grid */
.volunteers-instructors-section {
  background: #fafafa;
  padding: 120px 0;
}
.volunteers-instructors-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-top: 10px;
}
.volunteers-instructors-title {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 500;
  color: #1a2243;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}
.volunteers-load-more-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.volunteers-instructors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}
.volunteers-instructors-grid
  > .volunteers-instructor-card:nth-last-child(2):nth-child(4n + 1) {
  grid-column-start: 2;
}
.volunteers-instructor-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
.volunteers-instructor-name {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.volunteers-instructor-name i {
  color: #c64239;
  font-size: 20px;
  margin-top: 5px;
  flex-shrink: 0;
}
.volunteers-instructor-name span {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 400;
  color: #222;
  line-height: 1.3;
  word-break: break-word;
}
.volunteers-instructor-website {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
  word-break: break-all;
}
.volunteers-instructor-website a {
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.volunteers-instructor-website a:hover {
  color: #c64239;
  text-decoration: underline;
}
.volunteers-instructor-website a i {
  font-size: 12px;
  flex-shrink: 0;
}
.volunteers-instructors-section.ready .volunteers-instructors-grid {
  animation: fadeInUp 1.2s ease;
}
@media (max-width: 991px) {
  .volunteers-instructors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .volunteers-instructors-grid
    > .volunteers-instructor-card:nth-last-child(2):nth-child(4n + 1) {
    grid-column-start: auto;
  }
}
@media (max-width: 768px) {
  .volunteers-instructors-section {
    padding: 60px 0;
  }
  .volunteers-instructors-inner {
    gap: 40px;
  }
  .volunteers-instructors-title {
    font-size: 28px;
  }
  .volunteers-instructors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .volunteers-instructor-card {
    padding: 20px 16px;
    gap: 16px;
  }
  .volunteers-instructor-name span {
    font-size: 18px;
  }
  .volunteers-instructor-website {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .volunteers-instructors-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* DAR Award Text */
.volunteers-dar-section {
  background: #fff;
  padding: 80px 0;
}
.volunteers-dar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 200px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.volunteers-dar-inner p {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 400;
  color: #1a2243;
  line-height: 52px;
  margin: 0;
}
.volunteers-dar-attribution {
  text-align: center;
}
.volunteers-dar-section.ready > .volunteers-dar-inner {
  animation: fadeInUp 1.2s ease;
}
@media (max-width: 1200px) {
  .volunteers-dar-inner {
    padding: 0 80px;
  }
}
@media (max-width: 768px) {
  .volunteers-dar-section {
    padding: 50px 0;
  }
  .volunteers-dar-inner {
    padding: 0 20px;
    gap: 40px;
  }
  .volunteers-dar-inner p {
    font-size: 22px;
    line-height: 38px;
  }
}
