/* Photography Services Block - Frontend Styles */

.photography-services-wrapper {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.photography-services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.photography-services-headline {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.photography-services-subheadline {
  margin: 0;
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.photography-services-view-all-wrapper {
  display: flex;
  align-items: center;
}

.photography-services-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.photography-services-view-all .arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.photography-services-slider {
  position: relative;
}

.photography-services-slider .slick-slide img {
  width: 100%;
  height: unset;
  object-fit: contain; 
}

.photography-service-item {
  outline: none;
  padding: 0 15px;
}

.photography-service-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

/* Slick arrows */
.photo-services-prev,
.photo-services-next {
    width: 33px;
    height: 33px;
    background-color: #fff;
    background-size: cover;
    border: none;
    cursor: pointer;
    z-index: 2;
    position: absolute;
}

.photo-services-prev {
    background: url(../images/arrow_left.png) #fff no-repeat center;
    top: -52px;
    right: 40px;
}

.photo-services-next {
    background: url(../images/arrow_right.png) #fff no-repeat center;
    right: 0;
    top: -52px;
}

.photography-service-image {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: none;
}

.photography-service-image img {
  width: 100% !important;
  height: auto;
  object-fit: contain;
}

.photography-service-title {
    color: #424B5A;
    text-align: center;
    font-family: "Open Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

/* Slick Slider Overrides */
.photography-services-slider .slick-slide {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.photography-services-slider .slick-slide.slick-active {
  opacity: 1;
}


/* Mobile Styles */
@media (max-width: 768px) {
  .photography-services-wrapper {
    padding: 40px 20px;
  }

  .photography-services-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .photography-services-headline {
    font-size: 24px;
    width:60%;
  }

  .photography-services-subheadline {
    font-size: 14px;
  }

  .photography-service-image {
    width: 100px;
    height: 100px;
  }

  .photography-service-title {
    font-size: 12px;
  }

    /* Arrows on mobile */
  .photo-services-prev{
    top: -88px;
  }
  .photo-services-next {
    top: -88px;
  }

}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
  .photography-services-wrapper {
    padding: 50px 30px;
  }

  .photography-service-image {
    width: 140px;
    height: 140px;
  }

  .photography-service-title {
    font-size: 12px;
    max-width: 140px;
  }
}
