.editorial-page {
  display: grid;
  gap: 22px;
}

.editorial-hero,
.editorial-section,
.editorial-team-card {
  border: 1px solid rgba(229, 231, 235, 0.82);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-md);
}

.editorial-hero {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
}

.editorial-hero__mark {
  display: grid;
  place-items: center;
  width: 148px;
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(177, 137, 26, 0.14), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(177, 137, 26, 0.18);
}

.editorial-hero__mark img {
  width: 88px;
  height: auto;
}

.editorial-hero__copy,
.editorial-section,
.editorial-members {
  display: grid;
  gap: 12px;
}

.editorial-hero h1,
.editorial-section h2,
.editorial-team-card h3 {
  margin: 0;
  color: var(--text-primary);
}

.editorial-hero h1 {
  font-size: 34px;
  line-height: 1.35;
}

.editorial-section h2 {
  font-size: 23px;
  line-height: 1.55;
}

.editorial-team-card h3 {
  font-size: 17px;
  line-height: 1.7;
}

.editorial-hero p,
.editorial-section p,
.editorial-member p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 2.15;
}

.editorial-section {
  padding: 24px;
  border-radius: 24px;
}

.editorial-section--notice {
  border-color: rgba(177, 137, 26, 0.24);
  background: linear-gradient(180deg, rgba(255, 250, 235, 0.94), rgba(255, 255, 255, 0.94));
}

.editorial-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.editorial-team-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
}

.editorial-team-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.editorial-team-card__head i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--gold-deep);
  background: rgba(177, 137, 26, 0.1);
}

.editorial-member {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(229, 231, 235, 0.74);
}

.editorial-member strong {
  color: var(--text-primary);
  font-size: 14px;
}

@media (prefers-reduced-motion: no-preference) {
  .editorial-hero__mark {
    animation: editorialMarkFloat 6s ease-in-out infinite;
  }
}

@keyframes editorialMarkFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 980px) {
  .editorial-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .editorial-page {
    gap: 16px;
  }

  .editorial-hero {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 22px;
    border-radius: 24px;
  }

  .editorial-hero__mark {
    width: 118px;
    border-radius: 24px;
  }

  .editorial-hero__mark img {
    width: 72px;
  }

  .editorial-hero h1 {
    font-size: 27px;
  }

  .editorial-section {
    padding: 18px;
  }
}
