.p-front-gallery {
  padding: 88px 0 96px;
  background: var(--sou-paper);
  color: var(--sou-ink);
}

.p-front-gallery__head {
  max-width: 880px;
  margin: 0 auto 42px;
}

.p-front-gallery__eyebrow {
  margin: 0 0 14px;
  color: var(--sou-accent-dark);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.p-front-gallery__title {
  margin: 0;
  color: var(--sou-brown);
  font-size: clamp(1.7rem, 2.35vw, 2.45rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .1em;
}

.p-front-gallery__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 24px;
  background: var(--sou-accent);
}

.p-front-gallery__lead {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: .98rem;
  line-height: 2;
  letter-spacing: .045em;
}

.p-front-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.p-front-gallery-card {
  min-width: 0;
  border: 1px solid rgba(43, 33, 27, .12);
  background: rgba(255, 250, 240, .76);
  box-shadow: 0 10px 24px rgba(43, 33, 27, .1);
}

.p-front-gallery-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.p-front-gallery-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efe3d2;
}

.p-front-gallery-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-front-gallery-card__empty {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(43, 33, 27, .34);
  background:
    linear-gradient(135deg, rgba(139, 100, 53, .16), rgba(255, 250, 240, .62)),
    #efe3d2;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .18em;
}

.p-front-gallery-card__body {
  padding: 18px 18px 20px;
}

.p-front-gallery-card__date {
  margin: 0 0 8px;
  color: var(--sou-accent-dark);
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .12em;
}

.p-front-gallery-card__title {
  margin: 0;
  color: var(--sou-brown);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: .06em;
}

.p-front-gallery-card__comment {
  margin: 10px 0 0;
  color: var(--sou-muted);
  font-size: .86rem;
  line-height: 1.8;
  letter-spacing: .035em;
}

.p-front-gallery__more {
  margin-top: 36px;
  text-align: center;
}

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

.p-front-gallery__more a:hover,
.p-front-gallery__more a:focus-visible {
  color: var(--sou-accent-dark);
}

.p-front-gallery__empty {
  margin: 0;
  padding: 34px 24px;
  border: 1px solid var(--sou-line);
  background: rgba(255, 250, 240, .62);
  color: var(--sou-muted);
  font-size: .92rem;
  line-height: 1.8;
  letter-spacing: .04em;
  text-align: center;
}

@media (max-width: 900px) {
  .p-front-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .p-front-gallery {
    padding: 58px 0 66px;
  }

  .p-front-gallery__head {
    margin-bottom: 30px;
  }

  .p-front-gallery__grid {
    gap: 12px;
  }

  .p-front-gallery-card__body {
    padding: 14px 14px 16px;
  }

  .p-front-gallery-card__title {
    font-size: .92rem;
  }

  .p-front-gallery-card__comment {
    display: none;
  }
}
