/* =========================================================
   Gastro Item Single
   SOU
========================================================= */

.p-gastro-single {
  color: var(--sou-ink);
}

.p-gastro-single__article {
  min-height: 0;
}

.p-gastro-single__hero {
  margin-bottom: 32px;
}

.p-gastro-single__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.p-gastro-single__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid var(--sou-line);
  background: rgba(255, 250, 240, .62);
  color: var(--sou-accent-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.p-gastro-single__label--ended {
  color: #9f2f2f;
  border-color: rgba(159, 47, 47, .28);
}

.p-gastro-single__subtitle {
  margin: 0;
  color: var(--sou-muted);
  font-size: .96rem;
  line-height: 1.9;
  letter-spacing: .04em;
}

.p-gastro-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.p-gastro-single__visual {
  position: sticky;
  top: 96px;
  min-width: 0;
  background: #efe3d2;
}

.p-gastro-single__image {
  display: block;
  width: 100%;
  height: auto;
}

.p-gastro-single__noimage {
  display: grid;
  place-items: center;
  min-height: 340px;
  border: 1px solid var(--sou-line);
  background:
    linear-gradient(135deg, rgba(139, 100, 53, .16), rgba(255, 250, 240, .62)),
    #efe3d2;
  color: rgba(43, 33, 27, .34);
}

.p-gastro-single__noimage span {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.p-gastro-single__detail {
  min-width: 0;
}

.p-gastro-single__lead {
  margin: 0 0 34px;
  color: var(--sou-ink);
  font-size: 1rem;
  line-height: 2;
  letter-spacing: .04em;
}

.p-gastro-single__section {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--sou-line);
}

.p-gastro-single__section:first-child {
  margin-top: 0;
}

.p-gastro-single__sectionTitle {
  margin: 0 0 18px;
  color: var(--sou-brown);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .18em;
}

.p-gastro-single__priceList,
.p-gastro-single__specList {
  display: grid;
  gap: 14px;
  margin: 0;
}

.p-gastro-single__priceItem,
.p-gastro-single__specItem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--sou-line);
}

.p-gastro-single__priceItem:last-child,
.p-gastro-single__specItem:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.p-gastro-single__priceName,
.p-gastro-single__specName {
  min-width: 0;
  color: var(--sou-muted);
  font-size: .88rem;
  line-height: 1.7;
  letter-spacing: .04em;
}

.p-gastro-single__priceValue,
.p-gastro-single__specValue {
  margin: 0;
  text-align: right;
}

.p-gastro-single__priceAmount {
  color: var(--sou-brown);
  font-size: 1.24rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
}

.p-gastro-single__tax,
.p-gastro-single__priceNote {
  display: block;
  color: var(--sou-muted);
  font-size: .76rem;
  line-height: 1.6;
  letter-spacing: .04em;
}

.p-gastro-single__specValue {
  color: var(--sou-ink);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .04em;
}

.p-gastro-single__body {
  line-height: 2;
  letter-spacing: .04em;
}

.p-gastro-single__body > *:last-child {
  margin-bottom: 0;
}

.p-gastro-single__contentList {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 22px;
  border: 1px solid var(--sou-line);
  background: rgba(255, 250, 240, .62);
  list-style: none;
}

.p-gastro-single__contentItem {
  position: relative;
  padding-left: 1.2em;
  color: var(--sou-ink);
  font-size: .92rem;
  line-height: 1.8;
  letter-spacing: .04em;
}

.p-gastro-single__contentItem::before {
  content: "";
  position: absolute;
  top: .78em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--sou-accent);
}

.p-gastro-single__back {
  margin-top: 48px;
}

.p-gastro-single__back a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--sou-line);
  color: var(--sou-ink);
  font-size: .86rem;
  letter-spacing: .08em;
  text-decoration: none;
}

.p-gastro-single__back a:hover,
.p-gastro-single__back a:focus-visible {
  color: var(--sou-accent-dark);
  text-decoration: none;
}

@media (max-width: 960px) {
  .p-gastro-single__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-gastro-single__visual {
    position: static;
  }

  .p-gastro-single__priceItem,
  .p-gastro-single__specItem {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .p-gastro-single__priceValue,
  .p-gastro-single__specValue {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .p-gastro-single__hero {
    margin-bottom: 28px;
  }

  .p-gastro-single__layout {
    gap: 28px;
  }

  .p-gastro-single__noimage {
    min-height: 240px;
  }

  .p-gastro-single__lead {
    margin-bottom: 30px;
    font-size: .95rem;
    line-height: 1.95;
  }

  .p-gastro-single__section {
    margin-top: 34px;
    padding-top: 24px;
  }

  .p-gastro-single__contentList {
    padding: 18px;
  }
}/* =========================================================
   Gastro Item Single Related Courses
========================================================= */

.p-gastro-single-related {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.p-gastro-single-related__card {
  height: 144px;
  overflow: hidden;
  border: 1px solid var(--sou-line);
  background: rgba(255, 250, 240, .62);
}

.p-gastro-single-related__link {
  display: grid;
  grid-template-columns: 144px minmax(0, 1fr);
  height: 144px;
  color: inherit;
  text-decoration: none;
}

.p-gastro-single-related__image,
.p-gastro-single-related__img,
.p-gastro-single-related__placeholder {
  width: 144px;
  height: 144px;
}

.p-gastro-single-related__image {
  overflow: hidden;
  background: #efe3d2;
}

.p-gastro-single-related__img {
  display: block;
  object-fit: cover;
}

.p-gastro-single-related__placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(139, 100, 53, .16), rgba(255, 250, 240, .62)),
    #efe3d2;
  color: rgba(43, 33, 27, .34);
}

.p-gastro-single-related__placeholder span {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.p-gastro-single-related__body {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 144px;
  padding: 20px 24px 18px;
}

.p-gastro-single-related__title {
  margin: 0;
  color: var(--sou-brown);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: .06em;
}

.p-gastro-single-related__subtitle {
  margin: 8px 0 0;
  color: var(--sou-muted);
  font-size: .84rem;
  line-height: 1.65;
  letter-spacing: .035em;
}

.p-gastro-single-related__price {
  margin: auto 0 0;
  color: var(--sou-brown);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .05em;
  text-align: right;
}

@media (max-width: 767px) {
  .p-gastro-single-related__card,
  .p-gastro-single-related__link,
  .p-gastro-single-related__body {
    height: 112px;
  }

  .p-gastro-single-related__link {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .p-gastro-single-related__image,
  .p-gastro-single-related__img,
  .p-gastro-single-related__placeholder {
    width: 112px;
    height: 112px;
  }

  .p-gastro-single-related__body {
    padding: 14px 16px 13px;
  }

  .p-gastro-single-related__title {
    font-size: .94rem;
  }

  .p-gastro-single-related__subtitle {
    display: none;
  }

  .p-gastro-single-related__price {
    font-size: .94rem;
  }
}
