body.ltr .offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent>a>.menu-toggler, body.ltr .offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent>.menu-separator>.menu-toggler, 
.offcanvas-menu .offcanvas-inner ul.menu>li.menu-parent li.menu-parent .menu-toggler {
    width: 100%;
    text-align: right;
}

.body-innerwrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
#sp-main-body {
    margin-bottom: auto;
}
.video-section {
  padding: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}

/* your existing grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.photo-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* responsive */
@media (max-width: 700px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* /////////////////////////////////////
/* HOME PAGE ABOUT SECTION

/* Put this in your template CSS or inside a <style> block in the article */
.media-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px 15px;
  margin: 20px 0 300px;
  background: rgba(0,0,0,0.91);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.55);
  line-height: 1.5;
}

/* Image container */
.media-card .media-image {
  flex: 0 0 220px; /* fixed image column on wide screens */
  max-width: 220px;
  border-radius: 6px;
  overflow: hidden;
}

/* Make the image responsive and cover the box */
.media-card .media-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  vertical-align: middle;
}

/* Text body */
.media-card .media-body {
  flex: 1 1 auto;
  font-family: "Trebuchet MS", Geneva, sans-serif;
  font-size: 18px;
  color: #ffffff;
}

/* Small screens: stack image above text */
@media (max-width: 600px) {
  .media-card {
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    margin-bottom: 40px; /* reduce bottom margin for phones */
  }
  .media-card .media-image {
    width: 100%;
    max-width: 100%;
    flex: none;
    order: -1; /* ensure image appears above text */
  }
  .media-card .media-body {
    font-size: 16px;
  }
}

/* //////////////////////////////////