/* ===========================
   DESTINATION PAGE STYLES
   =========================== */

/* WYIM (With You In Mind) Section */
.wyim-section {
  padding: 1rem 0;
  background: var(--cream-white);
}

.wyim-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.wyim-section .section-header h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.wyim-zigzag {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wyim-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.wyim-item.reverse {
  direction: rtl;
}

.wyim-item.reverse .wyim-content {
  direction: ltr;
}

.wyim-content {
  padding: 1rem;
}

.wyim-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.wyim-header .wyim-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.wyim-header h3 {
  margin-bottom: 0;
}

.wyim-icon {
  margin-bottom: 1.5rem;
}

.wyim-icon i {
  width: 48px;
  height: 48px;
  color: var(--soft-gold);
  background: rgba(201, 170, 113, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.wyim-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-green);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.wyim-content p {
  font-size: var(--font-body-lg);
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.wyim-description-list {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.wyim-description-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: var(--font-body-lg);
  line-height: 1.6;
  color: var(--text-secondary);
}

.wyim-description-list li::before {
  content: "•";
  color: var(--soft-gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.wyim-description-list li .wyim-list-link {
  color: var(--soft-gold);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-left: 0.5rem;
  font-weight: 500;
}

.wyim-description-list li .wyim-list-link:hover {
  color: var(--deep-green);
  text-decoration: underline;
}

.wyim-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--deep-green);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.wyim-action-btn:hover {
  background: var(--darker-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.wyim-action-btn .action-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.wyim-action-btn:hover .action-arrow {
  transform: translateX(4px);
}

.wyim-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wyim-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wyim-image:hover img {
  transform: scale(1.05);
}

.wyim-clickable-image {
  cursor: pointer !important;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.wyim-clickable-image:hover {
  transform: scale(1.02);
  opacity: 0.95;
}

/* WYIM Image Wrapper */
.wyim-image-wrapper {
  position: relative;
  width: 100%;
}

/* WYIM Image Credit - Consolidated */
.wyim-image-credit {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.5rem;
  font-style: italic;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.wyim-image-credit:hover {
  opacity: 1;
}

/* Swiper styles for WYIM images */
.wyim-swiper {
  width: 100%;
  height: 100%;
}

.wyim-swiper .swiper-pagination {
  bottom: 15px;
}

.wyim-swiper .swiper-pagination-bullet {
  background: white;
  opacity: 0.7;
}

.wyim-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--deep-green);
}

.wyim-image-captions {
    margin-top: 15px;
    padding: 0 10px; 
    text-align: center;
    font-size: 0.65rem;
    color: var(--light-gray); 
    font-style: italic; 
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 15000; /* Higher than main nav (10000) */
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

/* Specific styling for lightbox image */
#lightbox-image {
  max-width: 100vw !important;
  max-height: 100vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Lightbox media container */
.lightbox-media-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100vw;
  max-height: 100vh;
  padding: 0;
  box-sizing: border-box;
}

.lightbox-media-container img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

/* X button - bigger for mobile */
.lightbox-close-x {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lightbox-close-x:hover {
  background: rgba(0, 0, 0, 0.95);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.lightbox-close-x svg {
  width: 28px;
  height: 28px;
}

/* Caption Toggle Button - inside media container */
.lightbox-caption-toggle {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

.lightbox-caption-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.lightbox-caption-toggle.active {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 1);
  color: #000;
}

.lightbox-caption-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.lightbox-caption-toggle.active svg {
  stroke: #000;
}

/* Lightbox Caption - Top Left, inside media container */
.lightbox-caption {
  position: absolute;
  top: 10px;
  left: 70px; /* Space for toggle button */
  max-width: 500px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  z-index: 1001;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.lightbox-caption.hidden {
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
}

.lightbox-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: white;
  line-height: 1.4;
}

.lightbox-description {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Hide caption elements when empty */
.lightbox-title:empty,
.lightbox-description:empty {
  display: none;
}

/* Navigation areas */
.lightbox-screen-click-area {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  z-index: 998;
  cursor: pointer;
  background: transparent;
  pointer-events: auto;
  display: flex;
  align-items: center;
}

.lightbox-screen-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 20px;
}

.lightbox-screen-next {
  right: 0;
  justify-content: flex-end;
  padding-right: 20px;
}

/* Arrow icons */
.lightbox-screen-click-area::after {
  content: "";
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-screen-prev::after {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 25px solid rgba(255, 255, 255, 0.9);
}

.lightbox-screen-next::after {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 25px solid rgba(255, 255, 255, 0.9);
}

.lightbox-screen-click-area:hover::after {
  opacity: 1;
}

/* Activities Section - Faithful to original in index.php */
.activities-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.activity-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(1, 68, 33, 0.1),
    0 1.5px 8px rgba(201, 170, 113, 0.08);
  border: 1.5px solid rgba(201, 170, 113, 0.13);
  overflow: visible;
  padding: 0 0 2.2rem 0;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.activity-card:hover {
  box-shadow: 0 16px 48px rgba(1, 68, 33, 0.18),
    0 2px 16px rgba(201, 170, 113, 0.18);
  transform: translateY(-8px) scale(1.025);
  border-color: var(--soft-gold);
}

.activity-image {
  width: 100%;
  height: 200px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}

.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.activity-card:hover .activity-image img {
  transform: scale(1.04);
}

/* Subtle overlay for image for text/icon contrast */
.activity-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 68, 33, 0.08) 0%,
    rgba(1, 68, 33, 0.18) 100%
  );
  pointer-events: none;
}

.activity-card h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--font-header-sm);
  color: var(--deep-green);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: var(--font-semibold);
  text-align: center;
}

.activity-card p {
  color: var(--light-gray);
  font-size: var(--font-body-lg);
  text-align: center;
  margin: 0 1.2rem 0.5rem 1.2rem;
  line-height: var(--line-height-relaxed);
}

/* Gold accent line below icon */
.activity-card h3::before {
  content: "";
  display: block;
  margin: 0 auto 0.7rem auto;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--soft-gold) 0%, #fffbe6 100%);
  opacity: 0.7;
}

/* Blog Section - Faithful to original in index.php */
.blog-section {
  padding: 1rem 0;
}

.blog-title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid rgba(201, 170, 113, 0.1);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--soft-gold);
}

.blog-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--soft-gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: var(--font-body-sm);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: var(--font-body-sm);
  color: var(--light-gray);
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-icon {
  width: 16px;
  height: 16px;
  color: var(--soft-gold);
}

.blog-content h3 {
  font-size: var(--font-header-sm);
  font-weight: var(--font-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: 1rem;
  color: var(--deep-green);
  transition: var(--transition);
}

.blog-card:hover .blog-content h3 {
  color: var(--soft-gold);
}

.blog-content p {
    color: var(--light-gray);
    font-size: var(--font-body-md);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 6; /* Maksimal 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.read-more-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--soft-gold);
  font-size: var(--font-body-lg);
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.read-more-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--soft-gold);
  transition: var(--transition);
}

.read-more-btn:hover {
  color: var(--deep-green);
}

.read-more-btn:hover::after {
  width: 100%;
}

.arrow-icon {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.read-more-btn:hover .arrow-icon {
  transform: translateX(5px);
}

.blog-cta {
  text-align: center;
  margin-top: 4rem;
}

.view-all-blogs-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--deep-green) 0%, #0a2e1a 100%);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: var(--font-button);
  font-weight: var(--font-semibold);
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(1, 68, 33, 0.3);
}

.view-all-blogs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(1, 68, 33, 0.4);
  background: linear-gradient(135deg, var(--soft-gold) 0%, #b89a5f 100%);
  color: var(--white);
}

.view-all-blogs-btn:active {
  transform: translateY(-1px);
}

.external-icon {
  width: 20px;
  height: 20px;
  transition: var(--transition);
  flex-shrink: 0; 
  display: inline-block;
  vertical-align: text-bottom; 
}

.view-all-blogs-btn:hover .external-icon {
  transform: translateX(3px) translateY(-2px);
  
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wyim-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wyim-item.reverse {
    direction: ltr;
  }

  .wyim-section .section-header h2 {
    font-size: 2.5rem;
  }

  /* Ensure consistent aspect ratio on tablet */
  .wyim-image {
    aspect-ratio: 4/3;
    height: auto;
  }
}
 .wyim-image-wrapper {
    order: -1; 
  }

  
@media (max-width: 768px) {
  .wyim-section {
    padding: 4rem 0;
    overflow-x: hidden;
  }

  .wyim-section .section-header {
    margin-bottom: 3rem;
  }

  .wyim-section .section-header h2 {
    font-size: 2rem;
  }

  .wyim-zigzag {
    padding: 0 1rem; /* Add horizontal padding */
    max-width: 100%;
  }

  .wyim-item {
    margin-bottom: 4rem;
  }

  .wyim-content {
    padding: 0; /* Remove padding on mobile */
  }

  .wyim-content h3 {
    font-size: 1.8rem;
  }

  .wyim-header {
    gap: 0.75rem;
  }

  /* WYIM Image fixes */
  .wyim-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .wyim-image {
    aspect-ratio: 4/3;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
  }

  .wyim-swiper {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .wyim-swiper .swiper-slide {
    width: 100%;
  }

  .wyim-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wyim-image-credit {
    font-size: 0.7rem;
    margin-top: 0.375rem;
  }

  /* Activities Section */
  .activities-section {
    padding: 4rem 0;
  }

  .activity-card h3 {
    margin-top: 2.5rem;
  }

  /* Blog Section */
  .blog-section {
    padding: 4rem 0;
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-image {
    height: 220px;
  }

  /* Lightbox mobile adjustments */
  .lightbox-close-x {
    width: 70px;
    height: 70px;
    top: 8px;
    right: 8px;
  }

  .lightbox-close-x svg {
    width: 36px;
    height: 36px;
  }

  .lightbox-caption-toggle {
    top: 10px;
    left: 10px;
    width: 44px;
    height: 44px;
  }

  .lightbox-caption-toggle svg {
    width: 22px;
    height: 22px;
  }

  .lightbox-caption {
    top: 65px;
    left: 10px;
    right: 10px;
    max-width: none;
    padding: 1rem;
  }

  .lightbox-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .lightbox-description {
    font-size: 0.85rem;
  }

  .lightbox-screen-click-area {
    width: 30%;
  }

  .lightbox-screen-prev {
    padding-left: 15px;
  }

  .lightbox-screen-next {
    padding-right: 15px;
  }

  .lightbox-screen-prev::after {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid rgba(255, 255, 255, 0.9);
  }

  .lightbox-screen-next::after {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid rgba(255, 255, 255, 0.9);
  }

  .lightbox-media-container {
    max-width: 100vw;
    max-height: 100vh;
    padding: 0;
  }

  .lightbox-media-container img {
    max-width: 100vw;
    max-height: 100vh;
  }

  .lightbox.active {
    overflow: hidden;
  }
}

@media (max-width: 480px) {

    .hero {
    height: 45vh;
    min-height: 320px;
    margin-top: 60px;
    margin-bottom: 25px;
  }

  /* Hero Carousel */
  .hero-carousel {
    height: 100%;
  }

  /* Hero Slide */
  .hero-slide {
    height: 100%;
  }

  /* Hero Image Container - Full Cover on Mobile */
  .hero-image-container {
    background-color: var(--deep-green) !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hero-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 0;
  }

  /* Hero Image - Full Size */
  .hero-image {
    object-fit: cover !important;
    object-position: center center !important;
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1 !important;
  }

  /* Hero Gradient Overlay */
  .hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  /* Hero Navigation Buttons - Smaller */
  .hero-navigation {
    padding: 0 15px;
  }

  .hero-nav-btn {
    width: 44px;
    height: 44px;
  }

  .hero-nav-btn svg {
    width: 18px;
    height: 18px;
  }

  /* Hero Controls - Smaller and Adjusted */
  .hero-controls {
    bottom: 20px;
    gap: 16px;
    animation: fadeInUp 0.8s ease 1.5s forwards;
  }

  /* Image Counter - Smaller */
  .hero-counter {
    padding: 8px 14px;
    border-radius: 25px;
  }

  .counter-current {
    font-size: 14px;
  }

  .counter-separator {
    width: 16px;
    margin: 0 8px;
  }

  .counter-total {
    font-size: 12px;
  }

  /* Gallery Link Button - Smaller */
  .gallery-link-btn {
    padding: 10px 16px;
    font-size: 11px;
    gap: 8px;
    border-radius: 40px;
  }

  .btn-icon svg,
  .btn-arrow svg {
    width: 13px;
    height: 13px;
  }

  /* Adjust fade-in animation timing */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateX(-50%) translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
  }

  .wyim-section {
    padding: 3rem 2rem;
    overflow-x: hidden;
  }

  .wyim-section .section-header {
    margin-bottom: 2rem;
  }

  .wyim-section .section-header h2 {
    font-size: 1.8rem;
  }

  .wyim-zigzag {
    padding: 0 0.75rem; 
    max-width: 100%;
  }

  .wyim-item {
    margin-bottom: 3rem;
  }

  .wyim-content {
    padding: 0;
  }

  .wyim-content h3 {
    font-size: 1.5rem;
  }

  .wyim-header {
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .wyim-header .wyim-icon i {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* WYIM Image full-width effect */
  .wyim-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .wyim-image {
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .wyim-swiper {
    width: 100%;
    height: auto;
    border-radius: 12;
    overflow: hidden;
  }

  .wyim-swiper .swiper-slide {
    width: 100%;
  }

  .wyim-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wyim-swiper .swiper-pagination {
    bottom: 10px;
  }

  .wyim-image-credit {
    padding: 0 0.75rem; /* Add padding back for credit text */
  }

  /* Description list improvements */
  .wyim-description-list li {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .wyim-description-list li .wyim-list-link {
    display: block;
    margin-top: 0.25rem;
    margin-left: 0;
  }

  /* Action button full width */
  .wyim-action-btn {
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  /* Activities Section */
  .activities-section {
    padding: 3rem 0;
  }

  .activity-card h3 {
    margin-top: 2.5rem;
  }

  /* Blog Section */
  .blog-section {
    padding: 3rem 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-content {
    padding: 1.25rem;
  }

  .blog-image {
    height: 180px;
  }

  .blog-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .blog-content h3 {
    font-size: var(--font-header-sm);
  }

  .blog-content p {
    font-size: var(--font-body-md);
  }

  .blog-cta {
    margin-top: 3rem;
  }

  .view-all-blogs-btn {
    padding: 0.75rem 1.5rem;
    font-size: var(--font-body-md);
    width: 100%;
    display: inline-block;
  }

  /* Lightbox small mobile adjustments */
  .lightbox-close-x {
    width: 64px;
    height: 64px;
    top: 5px;
    right: 5px;
  }

  .lightbox-close-x svg {
    width: 32px;
    height: 32px;
  }

  .lightbox-caption-toggle {
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
  }

  .lightbox-caption-toggle svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-caption {
    top: 55px;
    left: 5px;
    right: 5px;
    padding: 0.875rem;
  }

  .lightbox-title {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }

  .lightbox-description {
    font-size: 0.8rem;
  }

  .lightbox-screen-click-area {
    width: 25%;
  }

  .lightbox-screen-prev {
    padding-left: 10px;
  }

  .lightbox-screen-next {
    padding-right: 10px;
  }

  .lightbox-screen-prev::after {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 18px solid rgba(255, 255, 255, 0.9);
  }

  .lightbox-screen-next::after {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid rgba(255, 255, 255, 0.9);
  }

  .lightbox-media-container {
    padding: 0;
  }

  .lightbox-screen-click-area:active::after {
    opacity: 1 !important;
  }
}
