.we-are-patmos {
  background-image:
    url(/assets/images/activities-bg.png),
    linear-gradient(to right, #070707 50%);
  background-repeat: repeat, no-repeat;
  background-position: center, center;
  background-size: auto, auto;
  color: #fff;
  padding: 80px 0;
  font-family: "DM Sans", sans-serif;
}

.wap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.wap-admin-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.wap-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f58220;
  border: 1px solid #f58220;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.wap-edit-btn:hover {
  background: #f58220;
  color: #fff;
}

.wap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.wap-title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  margin-bottom: 30px;
  color: #FFFFFF;
  font-weight: 700;
}

.wap-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #E0E0E0;
  margin-bottom: 24px;
}

.wap-hashtags {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  font-weight: 700;
  color: #F58220;
}

.wap-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.wap-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wap-featured-img:hover {
  transform: scale(1.05);
}

.wap-quote-box {
  margin-top: 30px;
}

.wap-quote-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.wap-quote-text {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #E0E0E0;
  border: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 991px) {
  .we-are-patmos {
    padding: 60px 0;
    background-image:
      url(/assets/images/activities-bg.png),
      linear-gradient(to bottom, #c99a00 50%, #5e676f 50%);
    background-repeat: repeat, no-repeat;
    background-position: center, center;
    background-size: auto, auto;
  }

  .wap-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    display: flex;
    flex-direction: column;
  }

  .wap-left {
    order: 1;
    text-align: justify;
  }

  .wap-right {
    order: 2;
  }

  .wap-title {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .wap-grid {
    display: flex;
    flex-direction: column;
  }

  .wap-right {
    margin-top: 10px;
  }

  .wap-image-wrapper {
    aspect-ratio: 4 / 3;
    margin-bottom: 20px;
  }

  .wap-text p {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
  }

  .wap-hashtags {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
  }

  .wap-quote-text {
    font-size: 18px;
    text-align: center;
  }

  .wap-quote-icon {
    margin: 0 auto 10px;
  }
}