:root {
  --bobo-pic-columns-title-size: 36px;
  --bobo-pic-columns-text-size: 18px;
  --bobo-pic-columns-text-leading: 1.55;
  --bobo-pic-columns-text-mb: 28px;
  --bobo-pic-columns-pd: 80px 0;
  --bobo-pic-columns-ul-m: 40px -12px 0;
  --bobo-pic-columns-li-p: 12px;
}

.bobo-pic-columns {
  position: relative;
  background: #f8f8f8;
  padding: 80px 0;
}
.bobo-pic-columns .container{
  padding:0
}
.bobo-pic-columns h3 {
  margin-bottom: 30px;
  font-size: clamp(24px, 2.5vw, 48px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.gallery-container {
            display: flex;
            flex-wrap: wrap;
        }
        
        .main-image {
            flex: 1;
            min-width: 300px;
            padding: 15px;
        }
        
        .main-image img {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .main-image img:hover {
            transform: scale(1.02);
        }
        
        .thumbnail-container {
            flex: 1;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 15px;
            padding: 15px;
        }
        
        .thumbnail {
            width: 100%;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.3s ease;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .thumbnail:hover {
            transform: translateY(-5px);
        }
        
        .thumbnail:hover img {
            transform: scale(1.05);
        }

@-webkit-keyframes arrow-nudge-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  40% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes arrow-nudge-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  40% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bobo-pic-columns ul li:last-child:hover .t p::after {
  -webkit-animation: arrow-nudge-right 0.5s cubic-bezier(0.22, 1.03, 0.69, 0.97)
    0.3s;
  animation: arrow-nudge-right 0.5s cubic-bezier(0.22, 1.03, 0.69, 0.97) 0.3s;
}

@media screen and (max-width: 1500px) {
  :root {
    --bobo-pic-columns-title-size: 32px;
    --bobo-pic-columns-text-size: 16px;
    --bobo-pic-columns-text-mb: 24px;
  }
}

@media screen and (max-width: 1280px) {
  :root {
    --bobo-pic-columns-title-size: 28px;
  }
}

@media screen and (max-width: 992px) {
  :root {
    --bobo-pic-columns-title-size: 24px;
  }
}

@media screen and (max-width: 991px) {
  :root {
    --bobo-pic-columns-title-size: 28px;
    --bobo-pic-columns-text-leading: 1.4;
    --bobo-pic-columns-text-mb: 0;
    --bobo-pic-columns-pd: 30px 0;
    --bobo-pic-columns-ul-m: 25px -10px 0;
    --bobo-pic-columns-li-p: 10px;
  }

  .bobo-pic-columns {
    padding: 30px 0;
  }

  .bobo-pic-columns ul li:last-child .t > div{
   margin: 0 auto 20px 0;
  }
  .bobo-pic-columns ul li .box {
    padding: 10px 10px 0;
    box-shadow: 0 2px 10px 0 #e9e9e9;
  }

  .bobo-pic-columns ul li .txt {
    padding: 15px 10px;
  }

  .bobo-pic-columns ul li:last-child .box {
    padding: 10px;
  }

  .bobo-pic-columns ul li:last-child .t {
    padding: 20px;
  }

  .bobo-pic-columns ul li:last-child .t p {
    line-height: 1.6;
  }
}

@media screen and (max-width: 576px) {
  :root {
    --bobo-pic-columns-title-size: 24px;
    --bobo-pic-columns-text-size: 18px;
    --bobo-pic-columns-text-mb: 0;
    --bobo-pic-columns-ul-m: 25px -10px 0;
    --bobo-pic-columns-li-p: 10px;
  }
  .bobo-pic-columns ul li:last-child .t p {
    line-height: var(--bobo-pic-columns-text-leading);
  }
}
