@charset "UTF-8";

.exhibition-article {
  max-width: 960px;
  margin: 0 auto;
  color: #333;
  line-height: 1.9;
  font-size: 16px;
}

.exhibition-article__header {
  background: linear-gradient(135deg, #f6fbff 0%, #eef7fb 100%);
  border: 1px solid #d7e8ef;
  border-radius: 16px;
  padding: 34px 28px;
  margin-bottom: 32px;
}

.exhibition-article__eyecatch {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 12px;
  background: #167a92;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
}

.exhibition-article__title {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.45;
  color: #11485a;
}

.exhibition-article__lead {
  margin: 0;
  font-size: 16px;
}

.exhibition-section {
  margin-bottom: 42px;
}

.exhibition-section__title {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 12px 18px;
  font-size: 24px;
  line-height: 1.5;
  color: #11485a;
  border-bottom: 2px solid #dbe7ec;
}

.exhibition-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: calc(100% - 10px);
  background: #167a92;
  border-radius: 999px;
}

.exhibition-card,
.exhibition-product {
  background: #fff;
  border: 1px solid #e2e8ec;
  border-radius: 14px;
  padding: 24px 22px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(17, 72, 90, 0.04);
}

.exhibition-card__title,
.exhibition-product__title {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.6;
  color: #167a92;
}

.exhibition-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.exhibition-checklist li {
  position: relative;
  margin-bottom: 12px;
  padding: 14px 16px 14px 42px;
  background: #f8fcfd;
  border: 1px solid #dcebee;
  border-radius: 12px;
}

.exhibition-checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 13px;
  font-size: 18px;
  font-weight: 700;
  color: #167a92;
}

.exhibition-warning {
  border-left: 5px solid #ef9b2d;
  background: #fff8ef;
  padding: 18px 18px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}

.exhibition-warning__title {
  margin: 0 0 8px;
  font-size: 18px;
  color: #8c5710;
}

.exhibition-cta-copy {
  margin: 50px 0 18px;
  text-align: center;
}

.exhibition-cta-copy__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
  color: #11485a;
}

.exhibition-cta {
  margin: 0 0 42px;
  padding: 34px 24px;
  background: linear-gradient(135deg, #167a92 0%, #1f95b1 100%);
  border-radius: 18px;
  text-align: center;
  color: #fff;
  box-shadow: 0 16px 36px rgba(22, 122, 146, 0.18);
}

.exhibition-cta__sub {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.exhibition-cta__title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
}

.exhibition-cta__text {
  margin: 0 auto 22px;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.8;
}

.exhibition-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.exhibition-btn {
  display: inline-block;
  min-width: 240px;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.exhibition-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.exhibition-btn--primary {
  background: #fff;
  color: #167a92;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}

.exhibition-btn--line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 10px 24px rgba(6, 199, 85, 0.22);
}

.exhibition-section--summary {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .exhibition-article {
    font-size: 15px;
  }

  .exhibition-article__header {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .exhibition-article__title {
    font-size: 25px;
  }

  .exhibition-section__title {
    font-size: 21px;
    padding-left: 14px;
  }

  .exhibition-card,
  .exhibition-product {
    padding: 18px 16px;
  }

  .exhibition-card__title,
  .exhibition-product__title {
    font-size: 17px;
  }

  .exhibition-warning__title {
    font-size: 17px;
  }

  .exhibition-cta-copy__text {
    font-size: 16px;
  }

  .exhibition-cta {
    padding: 26px 16px;
    border-radius: 14px;
  }

  .exhibition-cta__title {
    font-size: 22px;
  }

  .exhibition-btn {
    width: 100%;
    min-width: 0;
    padding: 15px 18px;
  }
}