.operations-entry {
  padding: 78px 24px;
  background: linear-gradient(180deg, #f8fcff 0%, #eef7fd 100%);
  border-top: 1px solid #d9e8f4;
  border-bottom: 1px solid #d9e8f4;
}

.operations-entry-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.operations-entry .section-heading {
  margin-bottom: 34px;
}

.operations-entry .section-lead {
  max-width: 780px;
  margin-inline: auto;
}

.operations-entry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.operations-entry-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  border: 1px solid #d9e8f4;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(31, 92, 153, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.operations-entry-card:hover {
  transform: translateY(-3px);
  border-color: #2b7fcc;
  box-shadow: 0 16px 34px rgba(31, 92, 153, .14);
}

.operations-entry-card small {
  color: #2b7fcc;
  font-weight: 800;
}

.operations-entry-card strong {
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.55;
}

.operations-entry-card span {
  margin-top: auto;
  color: #2b7fcc;
  font-weight: 800;
}

.operations-entry-actions {
  margin-top: 30px;
  text-align: center;
}

.service-form-note {
  display: block;
  margin-top: 8px;
  padding: 10px 12px;
  color: #5f6f80;
  font-size: 12px;
  line-height: 1.65;
  background: #f4f8fb;
  border-radius: 8px;
}

@media (max-width: 980px) {
  .operations-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .operations-entry {
    padding: 58px 18px;
  }

  .operations-entry-grid {
    grid-template-columns: 1fr;
  }

  .operations-entry-card {
    min-height: 118px;
  }
}

