/* Journey Section */
.journey-section {
  margin: 60px 0;
}

.journey-container {
  display: grid;
  padding: 34px 40px;
  border-radius: 20px;
  background: var(--Blue-100, #e6f0f8);
  grid-template-columns: 40% 50%;
  gap: 34px;
  align-items: center;
}

.journey-image-box {
  background: linear-gradient(135deg, #c8dff0 0%, #e3f2fd 100%);
  border-radius: 16px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-placeholder {
  width: 100%;
  height: 412px;
  background: linear-gradient(135deg, #b3d9e8 0%, #d4e9f7 100%);
  border-radius: 16px;
}

.journey-title {
  color: var(--Blue-400, #00243d);
  font-family: "Playfair Display";
  font-size: 32px;
  font-weight: 500;
  line-height: 140%; /* 44.8px */
  margin-bottom: 16px;
}

.journey-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.journey-list li {
  color: #00243d;
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  list-style: disc;
  margin-left: 20px;
  line-height: 160%; /* 22.4px */
}
.colored-text {
  text-decoration: none;
  color: var(--Blue-300, #03489f);
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 500;
}

.journey-link:hover {
  color: #1976d2;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .rs-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rs-slider-image {
    height: 300px;
  }

  .journey-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-image-box {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .rs-hero-section {
    padding: 40px 0;
  }

  .rs-hero-title {
    font-size: 36px;
  }

  .journey-section {
    margin: 60px 0;
  }

  .journey-content {
    padding: 0px;
  }

  .journey-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .journey-list li {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .rs-slider-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .rs-hero-section {
    padding: 30px 0;
  }

  .rs-hero-title {
    font-size: 28px;
  }

  .rs-hero-subtitle {
    font-size: 12px;
  }

  .journey-container {
    gap: 0px;
    padding: 20px;
  }

  .journey-image-box {
    min-height: 200px;
  }

  .journey-content {
    padding: 20px 0px;
  }

  .journey-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .journey-list li {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .rs-slider-image {
    height: 200px;
  }
}

/* Round Square CTA Section */
.round-square-cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.round-square-card {
  position: relative;
  background-color: #03489f;
  border-radius: 20px;
  width: 624px;
  padding: 20px;
  text-align: center;
  display: flex;
  gap: 40px;
}

.card-logo {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-heading {
  color: var(--White, #fff);
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 400;
  text-align: left;
  line-height: 120%; /* 48px */
}

.card-button-icon-container{
  position: relative;
}
.card-url {
  color: var(--White, #fff);
  font-family: "Open Sans";
  cursor: pointer;
  font-size: 16px;
  text-align: left;
  font-weight: 400;
  margin: 20px 0;
  line-height: 160%; /* 25.6px */
  cursor: pointer;
  text-decoration: none;
}

.card-button-container{
  display: flex;
}
.card-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 2000px;
  border: 1px solid #fff;
  color: #fff;
  text-align: right;
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.2px;
  cursor: pointer;
  margin-top: 20px;
}

.card-button-icon{
  position: absolute;
  top: 0;
  left: -30px;
  width: 26px;
  height: 26px;
}
.card-button-icon2{
  position: absolute;
  top: 0;
  right: 10px;
  width: 208px;
  height: 100%;
  transform: scaleX(-1);
  opacity: 0.3;
}
.card-heading-container{
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.curriculum-section {
  margin: 60px 0;
  background: #def4e2;
  border-radius: 20px;
}

.curriculum-container {
  display: grid;
  padding: 34px 40px;
  border-radius: 20px;
  background: #def4e2;
  grid-template-columns: 40% 50%;
  gap: 34px;
  align-items: center;
}

.journey-description {
  color: #00243d;
  font-family: "Open Sans";
  max-width: 428px;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
}
@media (max-width: 1024px) {
  .curriculum-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .round-square-card {
    padding: 40px 30px;
    max-width: 100%;
  }

  .card-heading {
    font-size: 24px;
  }

  .curriculum-section {
    margin: 60px 0;
  }

  .curriculum-container {
    padding: 30px 24px;
    gap: 30px;
  }

  .journey-description {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .round-square-cta-section {
    margin: 40px 0;
  }

  .round-square-card {
    padding: 30px 20px;
    gap: 16px;
  }

  .card-logo {
    width: 60px;
    height: 60px;
  }

  .card-heading {
    font-size: 20px;
  }

  .card-url {
    font-size: 12px;
  }

  .card-button {
    font-size: 13px;
    padding: 10px 26px;
    margin-top: 20px;
  }

  .curriculum-section {
    margin: 40px 0;
  }
  .card-button-icon{
    display: none;
  }
  .card-button-icon2{
    width: 64px;
  }
  .curriculum-container {
    padding: 20px;
    gap: 0px;
  }

  .journey-description {
    font-size: 13px;
  }
}

/* Events & Initiatives Section */
.events-section {
  margin: 60px 0;
}

.events-section {
  background-color: unset;
  padding: unset;
  border-radius: unset;
  display: block;
  gap: unset;
  align-items: unset;
}

.events-title {
  color: var(--Blue-400, #00243d);
  font-family: "Playfair Display";
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 32px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.event-card {
  background: var(--Blue-100, #e6f0f8);
  border-radius: 16px;
  padding: 30px;
  border-bottom: 1px solid #03489f;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  align-items: normal !important;
}

.event-label {
  color: var(--Blue-300, #03489f);
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.event-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.event-name {
  color: var(--Blue-400, #00243d);
  font-family: "Playfair Display";
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 32px */
}

.event-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--Blue-400, #00243d);
}

/* Related Programs Section */
.related-programs-section {
  margin: 60px 0;
}

.related-programs-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.program-card {
  border-radius: 20px;
  border-bottom: 1px solid var(--Yellow-300, #fca312);
  background: var(--Yellow-100, #fff6e7);
  padding: 20px;
  text-decoration: none;
}

.program-card-image {
  width: 100%;
  height: 263px;
  border-radius: 16px;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.program-card-content {
  padding-top: 20px;
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.program-card-title {
  color: var(--Blue-300, #03489f);
  max-width: 300px;
  font-family: "Playfair Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 32px */
}

.program-card-link {
  color: var(--Blue-300, #03489f);
  max-width: 300px;
  font-family: "Playfair Display";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  text-decoration: none;
}

.program-card-icon {
  width: 20px;
  height: 20px;
  font-weight: 400;
  color: #03489f;
}

@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .events-section {
    margin: 60px 0;
  }

  .events-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .event-name {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .events-section {
    margin: 40px 0;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .events-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .event-card {
    padding: 20px;
    gap: 16px;
  }

  .event-name {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .related-programs-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .program-card-image {
    height: 240px;
  }

  .program-card-title {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .related-programs-section {
    margin: 60px 0;
    padding: 0 0px;
  }

  .related-programs-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .program-card-image {
    height: 220px;
  }

  .program-card-content {
    padding: 13px 0 0 0;
  }

  .program-card-title {
    font-size: 16px;
  }
}
