h2 {
  border-bottom: 3px solid var(--color-beige-soft);
  text-align: center;
  font-weight: normal;
  padding: 1rem 0;
  margin-bottom: 1.25rem;
}

.page-index__wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  gap: 1rem;
}

.page-index__slider {
  width: 100%;
  aspect-ratio: 1120/525;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  overflow: visible;
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--color-white);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  width: 5%;
  aspect-ratio: 1;
}

.carousel__arrow--prev {
  left: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel__arrow--next {
  right: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel__indicators {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.375rem;
  z-index: 10;
}

.carousel__indicator {
  width: 1.875rem;
  height: 3px;
  opacity: 0.5;
  background: var(--color-black);
  cursor: pointer;
  transition: opacity 0.6s ease;
}

.carousel__indicator.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .carousel__arrow--next {
    right: 1rem;
  }
  .carousel__arrow--prev {
    left: 1rem;
  }
}
.page-index__catalog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  justify-content: center;
}

.catalog-item {
  background: var(--color-light-beige);
  aspect-ratio: 1.65;
  border: 2px solid var(--color-gray-light-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.catalog-item {
  width: calc((100% - 0.75rem) / 3);
}

@media (max-width: 768px) {
  .catalog-item {
    width: calc((100% - 0.375rem) / 2);
  }
}
@media (max-width: 480px) {
  .catalog-item {
    width: 100%;
  }
}
.catalog-item__image {
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.catalog-item__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 357/180;
  object-fit: cover;
  display: block;
}

.catalog-item:hover {
  background: rgba(0, 0, 0, 0.6);
}

.catalog-item__title {
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Anglecia Pro", serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
  min-height: 2.5rem;
}

@media (max-width: 768px) {
  .catalog-item__title {
    font-size: 1rem;
    min-height: 2rem;
  }
}
@media (max-width: 480px) {
  .catalog-item__title {
    font-size: 0.875rem;
    min-height: 1.75rem;
  }
}
.catalog-item:hover .catalog-item__title {
  color: var(--color-white);
}

.page-index__about {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 2rem;
}

.page-index__about > div {
  position: relative;
  display: inline-block;
}

.page-index__about > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__text {
  position: absolute;
  color: var(--color-black);
  text-align: center;
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem 2rem;
  font-family: "Anglecia Pro", serif;
}

.page-index__about div:hover .about__text {
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-beige-light);
}

.page-index__exclusive .about__text {
  bottom: 0;
  left: 0;
}

.page-index__photo-gallery .about__text {
  bottom: 0;
  right: 0;
}

.page-index__new-product .about__text {
  bottom: 0;
  left: 0;
}

.about__text small {
  display: block;
  font-size: 0.875rem;
}

@media (max-width: 1200px) {
  .page-index__about {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .page-index__about {
    gap: 2.5rem;
    margin-top: 1.5rem;
  }
  .about__text {
    padding: 0.5rem 1rem;
  }
  .about__text p {
    font-size: 1rem;
  }
  .about__text p small {
    display: none;
  }
}
@media (max-width: 480px) {
  .page-index__about {
    gap: 1.5rem;
    margin-top: 1rem;
  }
  .about__text {
    padding: 0.5rem;
  }
  .about__text p {
    font-size: 1.125rem;
  }
}
.page-index__exhibition-list {
  display: flex;
  gap: 2rem;
}

.exhibition-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  color: var(--color-black);
  text-decoration: none;
}

.exhibition-item picture,
.exhibition-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.exhibition-item__title {
  margin-bottom: 1.2rem;
}

.exhibition-item__title:hover,
.exhibition-item__description:hover {
  text-decoration: underline;
}

.exhibition-item__body h3 {
  font-family: "Anglecia Pro", serif;
  font-size: 1.25rem;
}

.exhibition-item__body p {
  color: var(--color-gray-dark);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  .page-index__exhibition-list {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .exhibition-item__title {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
  .page-index__exhibition-list {
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .exhibition-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .exhibition-item picture {
    align-self: center;
  }
  .exhibition-item picture,
  .exhibition-item img {
    width: 100%;
    max-width: 340px;
    height: auto;
    object-fit: cover;
  }
}
.page-index__feedback-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .page-index__feedback-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.feedback-card {
  background: var(--color-light-beige);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
  padding: 1rem;
}

.feedback-card__header {
  border-bottom: 2px dotted rgba(193, 176, 157, 0.6);
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.feedback-card__avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.feedback-card__name {
  line-height: 2;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
}

.feedback-card__text {
  /*color: var(--color-brown-soft);*/
  /** contrast check passed */
  /*color: var(--color-brown-soft-2);*/
  /** more dark */
  color: var(--color-brown-medium);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

.feedback-link {
  padding-top: 1rem;
}

.feedback-link a {
  color: var(--color-red);
  text-decoration: none;
}

/*# sourceMappingURL=index.css.map */
