/**
 * Holiday Programs Widget Styles
 */

/* Holiday Programs Warp Main Container */
.holiday-programs-warp {
  position: relative;
  padding: 0;
}

/* Single Image Container */
.holiday-programs-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 32px;
}

.holiday-programs-image .holiday-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Layout: Gallery Right (Content Left, Gallery Right) */
.holiday-programs-warp.gallery-right .row {
  flex-direction: row-reverse;
  align-items: center;
}

/* Holiday Programs Content */
.holiday-programs-content {
  padding-left: 90px;
}

.holiday-programs-warp.gallery-right .holiday-programs-content {
  padding: 50px 8px;
}

.holiday-programs-content h2 {
  font-family: var(--iabt-font-family);
  font-size: var(--iabt-h2);
  font-weight: var(--iabt-font-bold);
  line-height: var(--iabt-line-height-heading);
  color: var(--iabt-text-heading);
  margin-bottom: 25px;
}

.holiday-programs-content p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.7;
}

/* Holiday Programs Buttons Container */
.holiday-programs-content .holiday-programs-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

/* Holiday Programs Link/Button */
.holiday-programs-content .holiday-programs-link {
  display: inline-block;
  color: var(--iabt-primary);
  border: 2px solid var(--iabt-primary);
  padding: 8px 16px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  height: fit-content;
}

.holiday-programs-content .holiday-programs-link span {
  position: relative;
}


.holiday-programs-content .holiday-programs-link:hover {
  color: var(--iabt-primary);
}

.holiday-programs-content .holiday-programs-link:hover span::before {
  width: 100%;
}

/* Holiday Programs Filled Button */
.holiday-programs-content .holiday-programs-link-filled {
  background-color: var(--iabt-primary);
  color: var(--iabt-bg-main);
  padding: 8px 16px;
  border-radius: 24px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.holiday-programs-content .holiday-programs-link-filled span::before {
  display: none;
}

.holiday-programs-content .holiday-programs-link-filled:hover {
  background-color: var(--iabt-primary);
  color: var(--iabt-bg-main);
  transform: translateY(-2px);
}

/* Responsive Styles */
@media only screen and (max-width: 1024px) {
  .holiday-programs-image {
    margin-bottom: 30px;
  }

  .holiday-programs-content {
    padding-left: 30px;
  }

  .holiday-programs-warp.gallery-right .holiday-programs-content {
    padding-left: 0;
    padding-right: 30px;
  }

  .holiday-programs-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .holiday-programs-content p {
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .holiday-programs-warp {
    padding: 40px 0;
  }

  .holiday-programs-image {
    margin-bottom: 40px;
  }

  .holiday-programs-content {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 25px;
  }

  .holiday-programs-warp.gallery-right .holiday-programs-content {
    padding-left: 0;
    padding-right: 0;
  }

  .holiday-programs-content h2 {
    letter-spacing: 1px;
    font-size: 22px;
    margin-bottom: 12px;
  }

  .holiday-programs-content p {
    margin-bottom: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .holiday-programs-warp {
    padding: 30px 0;
  }

  .holiday-programs-image {
    margin-bottom: 30px;
    border-radius: 0 16px;
  }

  .holiday-programs-content h2 {
    font-size: 20px;
  }

  .holiday-programs-content p {
    font-size: 15px;
  }

  .holiday-programs-content .holiday-programs-link {
    font-size: 14px;
  }
}

@media only screen and (max-width: 576px) {
  .holiday-programs-warp {
    padding: 20px 0;
  }

  .holiday-programs-image {
    margin-bottom: 25px;
    border-radius: 0 12px;
  }

  .holiday-programs-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .holiday-programs-content p {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
