/* ── What We Offer Widget ── */
.wwo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.wwo-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  height: 500px;
}

.wwo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.wwo-img.active {
  opacity: 1;
}

.wwo-content {
  background-color: #f5f2ec;
  padding: 64px 56px 64px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wwo-title {
  font-size: 44px;
  font-weight: 700;
  color: #1a1612;
  line-height: 1.1;
  margin-bottom: 12px;
}

.wwo-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}

.wwo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #c8c2b8;
  transition: background-color 0.3s, transform 0.3s;
}

.wwo-dot.active {
  background-color: #8a6d50;
  transform: scale(1.35);
}

.wwo-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wwo-service-item {
  border-top: 1px solid #d8d2c8;
}

.wwo-service-item:last-child {
  border-bottom: 1px solid #d8d2c8;
}

.wwo-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: padding-left 0.25s ease;
}

.wwo-service-link:hover,
.wwo-service-link.active {
  padding-left: 10px;
}

.wwo-service-name {
  font-size: 17px;
  font-weight: 500;
  color: #1a1612;
  transition: color 0.2s;
}

.wwo-service-link:hover .wwo-service-name,
.wwo-service-link.active .wwo-service-name {
  color: #8a6d50;
}

.wwo-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #c8c2b8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #ffffff;
  transition: background-color 0.25s, border-color 0.25s;
}

.wwo-btn svg {
  width: 13px;
  height: 13px;
  stroke: #888888;
  transition: stroke 0.25s;
}

.wwo-service-link:hover .wwo-btn,
.wwo-service-link.active .wwo-btn {
  background-color: #1a1612;
  border-color: #1a1612;
}

.wwo-service-link:hover .wwo-btn svg,
.wwo-service-link.active .wwo-btn svg {
  stroke: #ffffff;
}

.wwo-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1612;
  text-decoration: none;
  border-bottom: 1.5px solid #1a1612;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 0.2s, border-bottom-color 0.2s;
}

.wwo-more svg {
  stroke: #1a1612;
  transition: stroke 0.2s;
}

.wwo-more:hover {
  color: #8a6d50;
  border-bottom-color: #8a6d50;
}

.wwo-more:hover svg {
  stroke: #8a6d50;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .wwo-section.wwo-mobile-stack {
    grid-template-columns: 1fr;
  }
  .wwo-section.wwo-mobile-stack .wwo-image-wrap {
    min-height: 280px;
    height: 280px;
  }
  .wwo-section.wwo-mobile-stack .wwo-content {
    padding: 40px 24px;
  }
  .wwo-section.wwo-mobile-stack .wwo-title {
    font-size: 28px;
  }
}
