.company-page .hero {
  min-height: auto;
  padding-top: 7.5rem;
}

.company-page .company-hero .hero-content {
  max-width: 840px;
}

.hero-content p {
  color: var(--muted);
}

.company-profile,
.company-message {
  padding-top: 1rem;
}

.profile-card {
  margin-top: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(243, 249, 255, 0.86));
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.profile-table {
  margin: 0;
}

.profile-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(96, 142, 193, 0.16);
}

.profile-row:last-child {
  border-bottom: none;
}

.profile-row dt {
  margin: 0;
  color: #1d4f7a;
  font-weight: 700;
}

.profile-row dd {
  margin: 0;
  color: var(--muted);
}

.profile-row a {
  display: inline-flex;
  align-items: center;
  color: #1b6fa7;
  font-weight: 600;
  transition: color 0.35s ease;
}

.profile-row a:hover,
.profile-row a:focus-visible {
  color: var(--emphasis-red);
}

.googlemap {
  border: 0;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  width: 100%;
  height: 250px;
  transition: filter 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95)
}

.googlemap:hover {
  filter: none;
  -webkit-filter: none;
}

.company-message p {
  /* max-width: 72ch; */
  color: var(--muted);
}

@media (max-width: 900px) {
  .company-page .hero {
    padding-top: 6.5rem;
  }

  .profile-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.8rem 0;
  }
}