.content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 2.5rem 0;
}
.page-intro {
  position: relative;
  width: 100%;
  min-height: 90vh;
  background-image: url("/img/brand/crew-service/Crew-Service-bg.webp");
  background-size: cover;
  background-attachment: fixed;
  background-position: 50% 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  color: #eee;
  padding: 2.5%;
  box-sizing: border-box;
}

.page-intro,
.page-detail {
  background-color: #000;
  padding: 2.5%;
}

.page-intro-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 250px;
  padding: 30px 0 100px 0;
  width: 100%;
}

.content-item {
  display: flex;
  gap: 45px;
  justify-content: space-between;
}

.content-title {
  color: #eee;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
  flex: 1;
  text-align: left;
  font-size: 16px;
}
.content-title a {
  color: #a0b8ae;
}

.content-item-btn {
  line-height: 30px;
  display: flex;
  align-items: center;
  border: 2px solid #fff;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  height: 47px;
  width: fit-content;
  padding: 0 20px;
  color: #fff;
}
.content-item a:hover,
.content-item-btn:hover {
  background-color: #fff;
  color: #000;
}

.content-item-desc {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 15px;
}
.content-item-desc p {
  min-height: 77px;
}
.product-desc {
  min-height: 231px;
}

.page-detail-content {
  margin-top: 140px;
  padding-top: 40px;
  border-top: 1px solid #fff;
}

.product {
  display: flex;
  justify-content: space-between;
}

.product-name {
  width: 25%;
  color: #eee;
  font-size: 22px;
}

.product-info {
  display: flex;
  width: 50%;
  gap: 30px;
}

.product-info-desc {
  width: 50%;
  flex: 1;
}

.product-info-desc p {
  color: #eeeeee;
  margin-bottom: 70px;
}

.product-info-desc h4 {
  color: #eeeeee;
}

.crew-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-top: 16px;
}

.crew-guide-table th,
.crew-guide-table td {
  border: 1px solid #ccc;
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  width: 50%;
  color: #fff;
}

.page-crew-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-top: 10rem;
}

.page-crew-btn-col {
  width: 25%;
}

.page-crew-btn-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #eee;
}

.page-crew-btn-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #eee;
  margin: 0 0 1.5rem 0;
}

.btn-link {
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid #000;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #eee;
  transition: all 0.3s ease;
}

.btn-link:hover {
  background-color: #000;
  color: #fff;
}

.page-detail-images {
  padding-bottom: 150px;
}

.page-gallery {
  width: 100%;
  margin-top: 30px;
}

.page-gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-gallery-item {
  display: flex;
  align-items: center;
  flex-basis: calc(25% - 15px);
  flex-grow: 0;
}

.page-gallery-item.full-image {
  flex-grow: 1;
  flex-basis: 50%;
}

.page-crew-faq {
  padding: 2.5%;
  margin-top: 80px;
  margin-bottom: 50px;
}

.page-crew-faq-title {
  font-size: 22px;
  color: #282828;
  line-height: 2;
}

.faq-container {
  margin-top: 32px;
}

.faq-item {
  margin-bottom: 21px;
}

.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #000;
  font-size: 20px;
  line-height: 1.4;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  margin-right: 5px;
  width: 20px;
  text-align: center;
  /* (아이콘 +/– 변경은 JS가 하므로 CSS에서는 제거) */
}

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;

  transition: grid-template-rows 0.4s ease-in-out;
}

/* [active] 상태: 패널 열림 */
.faq-item.active .faq-answer-wrapper {
  grid-template-rows: 1fr;
}

/* 답변 안쪽 내용물 (패딩) */
.faq-answer-content {
  overflow: hidden;

  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
}

.faq-answer-content p {
  margin-top: 1em;
  margin-bottom: 25px;
  padding-left: 26px;
}

.faq-answer-content p + p {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .content-item {
    flex-direction: column;
  }
  .content-item-desc {
    width: 100%;
    padding: 0;
  }
  .page-gallery-item {
    flex-grow: 1;
    flex-basis: auto;
  }

  .product {
    flex-direction: column;
    gap: 30px;
  }

  .product-name {
    width: 100%;
  }
  .product-info {
    flex-direction: column;
    width: 100%;
  }
  .product-info-desc {
    width: 100%;
  }

  .page-crew-btn-col {
    flex: 1;
  }

  .page-gallery-item {
    min-width: fit-content;
  }
}
