.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 45px 80px;
}

.intro-text {
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 300;
  line-height: 1.5;
  color: #2d2d2d;
  max-width: 950px;
  margin-bottom: 72px;
  margin-top: 72px;
  letter-spacing: 0.01em;
}

.highlights-label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin-top: 10rem;
  color: #2d2d2d;
  font-size: 25px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
}

.highlight-card img {
  width: 100%;
  aspect-ratio: 4 / 2;
  object-fit: cover;
  display: block;
}

.highlight-caption {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
  padding: 10px 10px;
  font-size: 20px;
}
.highlights-carousel {
  display: none;
  flex-direction: column;
}

.carousel-track-wrap {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  flex-direction: column;
  display: flex;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.carousel-slide .highlight-caption {
  text-align: center;
  margin-top: 18px;
}

.carousel-controls-tablet {
  display: flex;
  align-items: center;
  margin-top: 32px;
  border-top: 1px solid #ccc;
  padding-top: 18px;
  justify-content: flex-end;
  gap: 12px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.carousel-btn:hover {
  border-color: #2d2d2d;
  background: #f5f5f5;
}
.carousel-btn svg {
  width: 16px;
  height: 16px;
  stroke: #2d2d2d;
  fill: none;
  stroke-width: 1.8;
}
.carousel-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.carousel-controls-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
}

.swipe-line {
  width: 100%;
  height: 1px;
  background: #ccc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swipe-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid #bbb;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.swipe-icon svg {
  width: 18px;
  height: 18px;
  stroke: #888;
  fill: none;
  stroke-width: 1.5;
}

@media (max-width: 900px) {
  .section {
    padding: 50px 48px 60px;
  }
  .highlights-grid {
    display: none;
  }
  .intro-text {
    max-width: 550px;
    text-align: left;
  }
  .highlights-carousel {
    display: flex;
  }
  .carousel-controls-tablet {
    display: flex;
  }
  .carousel-controls-mobile {
    display: none;
  }
}
@media (max-width: 765px) {
  .section {
    padding: 40px 12px 60px;
  }
  .carousel-controls-tablet {
    display: none;
  }
  .highlights-label {
    margin-top: 5rem;
  }
  .carousel-controls-mobile {
    display: flex;
  }
}
/* Operations */
.operations {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.operations-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

.operations-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 1;
}

.operations-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 150px 0 150px 13%;
}

.operations-title {
  font-family: var(--font-body);
  font-size: 45px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 32px 0;
}

.operations-text {
  font-family: var(--font-body);
  font-size: 17px;
  word-spacing: 1px;
  letter-spacing: 1px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  width: 650px;
  margin: 0 0 20px 0;
}

.operations-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .operations-content {
    padding: 70px 6% 70px 8%;
    max-width: 700px;
  }
  .operations-title {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .operations {
    min-height: auto;
  }

  .operations-content {
    padding: 60px 6% 60px 6%;
    max-width: 100%;
  }
  .operations-title {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .operations-text {
    font-size: 15px;
    max-width: 600px;
  }
}
@media (max-width: 660px) {
  .operations-text {
    max-width: 550px;
  }
}
@media (max-width: 595px) {
  .operations-content {
    padding: 50px 5% 50px 5%;
  }
  .operations-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .operations-text {
    font-size: 14px;
    max-width: 450px;
    line-height: 1.65;
  }
}
@media (max-width: 480px) {
  .operations-text {
    max-width: 400px;
  }
}
@media (max-width: 415px) {
  .operations-text {
    max-width: 350px;
  }
}
@media (max-width: 370px) {
  .operations-text {
    max-width: 270px;
  }
}

/* Assets */
.assets {
  width: 100%;
  background-color: #ffffff;
  padding: 80px 0;
  padding-bottom: 10rem;
}

.assets-content {
  margin-top: 6rem;
  max-width: 1020px;
  padding: 0 0 0 13%;
}

.assets-title {
  font-family: var(--font-body);
  font-size: 55px;
  font-weight: 400;
  color: #2a2a2a;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 32px 0;
}

.assets-text {
  font-family: var(--font-body);
  font-size: 18px;
  max-width: 650px;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: #555555;
  margin: 0 0 20px 0;
}
.p1 {
  width: 100%;
}
.assets-list {
  list-style: disc;
  padding-left: 5px;
  margin: 0 0 24px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.assets-list-item {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  max-width: 750px;
  color: #555555;
  line-height: 1.5;
}

.assets-list-item strong {
  color: #2a2a2a;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .assets-content {
    padding: 0 8%;
  }

  .assets-title {
    font-size: 44px;
  }
  .assets-text {
    max-width: 695px;
  }
  .assets-list-item {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .assets {
    padding: 60px 0;
  }

  .assets-content {
    padding: 0 6%;
  }

  .assets-title {
    font-size: 38px;
    margin-bottom: 24px;
  }

  .assets-text {
    font-size: 15px;
    max-width: 530px;
  }

  .assets-list-item {
    font-size: 15px;
    max-width: 520px;
  }
}

@media (max-width: 480px) {
  .assets {
    padding: 50px 0;
  }

  .assets-content {
    padding: 0 5%;
  }

  .assets-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .assets-text {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .assets-list-item {
    font-size: 14px;
    line-height: 1.65;
  }
}
