/* 
  MKTENG V1 
  https://claude.ai/chat/f43c9b1b-8173-4073-a520-4a70e2d77307
  https://codepen.io/garyricke/pen/KwdGGBa
*/
/* Optimized Squarespace Custom CSS */
/* Scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Link styling */
p a {
  text-decoration: underline;
  text-decoration-thickness: 0.07em;
  text-underline-offset: 3.5px;
}

/* Table of Contents Styles */
.toc-list {
  list-style: none;
  padding-left: 0;
}

.toc-list li {
  margin-bottom: 8px;
}

.toc-list.has-indented-items .toc-indented {
  margin-left: 20px;
}

.toc-list.has-indented-items .toc-main a {
  font-weight: bold;
}

.toc-list.has-indented-items .toc-indented a {
  font-weight: normal;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #ffc107;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background-color 0.3s;
  z-index: 1000;
}

.scroll-to-top:hover {
  background-color: #ffb300;
}

.scroll-to-top.visible {
  opacity: 1;
}

.scroll-to-top svg {
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
}



/* Video Play Icon Styles */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  fill: white;
  stroke: white;
}

/* Carousel specific play icon - needs pointer events enabled */
.carousel-play-icon {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 1000 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

/* Summary Block Carousel */
.summary-heading {
  width: 90% !important;
}

.summary-carousel-pager {
  width: 105px !important;
}

.summary-carousel-pager span {
  background-color: rgba(255, 255, 255, 0.5) !important;
  padding: 6px !important;
}

.summary-carousel-pager span:before {
  font-size: 26px !important;
  font-weight: 700 !important;
  margin-left: -7px;
  padding: 10px;
}

.fe-block .summary-v2-block.sqs-block-summary-v2 .sqs-block-content {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .play-icon svg {
    width: 60px;
    height: 60px;
  }
  
  /* Larger play icons for mobile on carousels and other elements */
  .user-items-list-carousel__slide .play-icon svg,
  li.list-item .play-icon svg {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .play-icon svg {
    width: 80px;
    height: 80px;
  }
}