.comms-page {
  min-height: calc(100vh - var(--content-top-gap, 0px));
  background: #ffffff;
  color: #111827;
}

.comms-home {
  padding: 22px 24px;
}

.comms-home__section {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.comms-home__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  margin-bottom: 18px;
}

.comms-home__eyebrow {
  margin: 0 0 4px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.comms-home__title {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 760;
  line-height: 1.15;
}

.comms-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.comms-shortcut {
  min-height: 98px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  color: #111827;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.comms-shortcut:hover,
.comms-shortcut:focus-visible {
  color: #111827;
  border-color: #cbd5e1;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.08);
  transform: translateY(-1px);
}

.comms-shortcut--empty {
  cursor: default;
}

.comms-shortcut--empty:hover,
.comms-shortcut--empty:focus-visible {
  border-color: #e5e7eb;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
  transform: none;
}

.comms-shortcut__icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 25px;
}

.comms-shortcut__icon--chat {
  background: #ecfeff;
  color: #0891b2;
}

.comms-shortcut__copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.comms-shortcut__title {
  color: #111827;
  font-size: 15px;
  font-weight: 740;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.comms-shortcut__text {
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .comms-home {
    padding: 18px 14px;
  }

  .comms-home__title {
    font-size: 21px;
  }

  .comms-shortcuts {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .comms-shortcut {
    min-height: 82px;
    padding: 12px;
  }

  .comms-shortcut__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 22px;
  }
}

@media (min-width: 721px) and (max-width: 1050px) {
  .comms-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
