.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 1rem;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-card {
  width: 100%;
  height: 250px;
  min-height: 250px;
  overflow: hidden;
  border-radius: 7px;
  background: var(--paper);
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-card[open] {
  height: auto;
  transform: none;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-trigger {
  box-sizing: border-box;
  width: 100%;
  height: 250px;
  min-height: 250px;
  padding: 1.2rem 1.1rem;
  align-items: flex-start;
  text-align: left;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-trigger h3 {
  width: 100%;
  max-width: none;
  margin-top: .85rem;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
  text-wrap: balance;
  font-size: 1.7rem;
  line-height: 1.04;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-trigger p {
  width: 100%;
  max-width: none;
  font-family: var(--sans);
  font-size: .82rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-trigger > strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-top: .65rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-trigger > strong span {
  margin-left: .35rem;
  transition: transform var(--motion-fast) var(--motion-ease);
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-card[open] .hw-frontoffice-topic-trigger > strong span {
  transform: rotate(90deg);
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-panel {
  position: static;
  margin: 0 .75rem .75rem;
  padding: .45rem;
  animation: hw-frontoffice-panel-in var(--motion-base) var(--motion-soft) both;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-list {
  gap: .35rem;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-item > a,
.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-item > div {
  min-height: 52px;
  padding: .7rem .75rem;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-item span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  line-height: 1.45;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-item strong {
  max-width: 9.5rem;
  text-align: right;
  white-space: nowrap;
}

.hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-item > a:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}

@keyframes hw-frontoffice-panel-in {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1180px) {
  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-trigger {
    height: 270px;
    min-height: 270px;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-card {
    height: 270px;
    min-height: 270px;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-card[open] {
    height: auto;
  }
}

@media (max-width: 760px) {
  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-grid {
    grid-template-columns: 1fr;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-trigger {
    height: 260px;
    min-height: 260px;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-card {
    height: 260px;
    min-height: 260px;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-card[open] {
    height: auto;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-trigger h3 {
    max-width: none;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-panel {
    margin: 0 .55rem .55rem;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-item > a,
  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-item > div {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-item strong {
    max-width: none;
    text-align: left;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-panel {
    animation: none;
  }

  .hw-hub-body[data-hub-page="frontOffice"] .hw-frontoffice-topic-trigger > strong span {
    transition: none;
  }
}
