/* ==========================================================================
   Страница «О предприятии»
   ========================================================================== */

.page-header {
  background: var(--color-blue);
}

.breadcrumbs {
  padding-top: 40px;
  font-size: 18px;
  color: var(--color-text);
}

.breadcrumbs a {
  color: var(--color-blue);
  transition: opacity .2s ease;
}

.breadcrumbs a:hover {
  opacity: .7;
}

.intro {
  padding: 20px 0 60px;
}

.intro h1 {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 30px;
}

.intro p {
  font-size: 18px;
  line-height: 30px;
  max-width: 1280px;
}

.intro p + p {
  margin-top: 24px;
}

/* ---------- Наша история ---------- */

.history {
  padding-bottom: 100px;
}

.history__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.history-card {
  border: 1px solid var(--color-border-soft);
  border-radius: 5px;
  padding: 36px;
  height: 339px;
  display: flex;
  flex-direction: column;
}

.history-card strong {
  display: block;
  color: var(--color-blue);
  font-weight: 500;
  font-size: 48px;
  margin-bottom: 12px;
}

.history-card p {
  font-size: 16px;
  line-height: 26px;
  overflow: hidden;
}

/* ---------- Область применения ---------- */

.applications {
  padding-bottom: 75px;
}

.applications__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.applications__text {
  margin-top: 40px;
  font-size: 16px;
  line-height: 26px;
}

.applications__text p + p {
  margin-top: 20px;
}

.application-card {
  position: relative;
  height: 384px;
  border-radius: 10px;
  overflow: hidden;
  color: var(--color-white);
  display: flex;
  align-items: flex-end;
}

.application-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.application-card__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(44, 62, 95, .4);
  transition: opacity .3s ease;
}

.application-card:hover .application-card__tint {
  opacity: 0;
}

.application-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,62,95,0) 40%, rgba(44,62,95,.85) 100%);
  z-index: 2;
}

.application-card span {
  position: relative;
  z-index: 3;
  display: block;
  padding: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

/* ---------- Руководство ---------- */

.management {
  padding-bottom: 100px;
}

.management__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.management-card {
  border: 1px solid var(--color-border-soft);
  border-radius: 5px;
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
}

.management-card__photo {
  height: 282px;
  background: var(--color-navy);
  flex-shrink: 0;
}

.management-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.management-card__body {
  padding: 24px;
}

.management-card__body h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 8px;
}

.management-card__body p {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text);
}
