/** Shopify CDN: Minification failed

Line 196:17 Expected identifier but found whitespace
Line 196:19 Unexpected "{"
Line 196:28 Expected ":"

**/


/* CSS from section stylesheet tags */
.section-header-srt{
  text-align: center;
  margin-bottom: 5rem;
}
.section-header-srt h2{
    color: #222;
    position: relative;
    display: inline-block;
    font-size: 2.8rem;
}
.section-header-srt h2:after{
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, rgb(83 63 150) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.8;
}
  
.waterfall-gallery {
  column-count: 3;
  column-gap: 20px;
  
  /* display: grid;
  grid-template-columns: repeat({{ section.settings.columns }}, minmax(280px, 1fr));
  grid-auto-rows: 10px;
  grid-gap: 20px;
  margin-top: 30px; */
}

.waterfall-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 2rem;
}

/* .waterfall-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
} */

.waterfall-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  opacity: 0;
  transition: all 0.3s ease;
  text-align: center;

  display: none;
}

.waterfall-item:hover .item-overlay {
  opacity: 1;
}

.waterfall-item:hover img {
  transform: scale(1.03);
}

.item-overlay h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 15px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.item-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.15s;
}

.waterfall-item:hover .item-overlay h3,
.waterfall-item:hover .item-overlay p {
  transform: translateY(0);
}

/* 响应式设计 */
@media (max-width: 768px) {
  .waterfall-gallery {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    grid-gap: 15px;
  }
}

@media (max-width: 480px) {
  .waterfall-gallery {
    grid-template-columns: 1fr;
  }
}
.hover-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* margin: 15px; */
}

.hover-image {
  width: 100%;
  height: 100%; /*auto*/
  transition: 0.3s;
  max-height: 290px;
  object-fit: cover;
}

.hover-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  opacity: 0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hover-image-container:hover .hover-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
}
.overlay-content p{
  font-size: 24px;
  font-weight: 600;
}
.overlay-content a{
  color: #fff;
  background: #533f96;
  font-size: 18px;
  padding: 1rem 2rem;
  border-radius: 8px;
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 20px;
  padding: 15px;
}

.gallery-title{
  margin: 3rem 0 5rem;
}


  @media screen and (max-width: 768px) {
    .gallery-wrapper {
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
  }
:root {
  --primary-color: #533F96;
  --accent-color: {{ section.settings.title_color | color_modify: 'alpha', 0.1 }};
}
/* @keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.subsection-block {
  animation: cardEntrance 0.6s ease forwards;
  animation-delay: calc(var(--index) * 0.1s);
} */

.text-content-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 30px;
}

.main-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 4rem;
  position: relative;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.main-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color) 0%, rgba(255,255,255,0) 100%);
  opacity: 0.8;
}

.subsection-block {
  margin-bottom: 2rem;
  padding: 3rem 2rem 1rem;
  background: #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgb(245 245 245 / 35%);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.subsection-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.subsection-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgb(245 245 245 / 35%);
}

.subsection-block:hover::before {
  width: 6px;
}

.subtitle {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #222;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}

.subtitle::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.8em;
  line-height: 0;
}

.content-text {
  line-height: 1.8;
  color: #222;
  font-size: 1.6rem;
  padding-left: 20px;
  /* border-left: 2px solid var(--accent-color); */
  margin-left: 10px;
}
  
@media (max-width: 768px) {
  .text-content-section {
    padding: 0 15px;
    margin: 50px auto;
  }

  .main-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .subsection-block {
    padding: 20px;
    margin-bottom: 20px;
  }

  .content-text {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }

  .subtitle::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .subsection-block {
    transition: none;
  }
}