:root {
  --spacer-lg: 5rem;
  --spacer: 3rem;
  --spacer-md: 3rem;
  --spacer-sm: 2rem;
  --spacer-sm-md: 2rem;
}

@media (min-width: 782px) {
  :root {
    --spacer-lg: 6.5rem;
    --spacer: 4rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --spacer-lg: 8rem;
    --spacer: 6rem;
    --spacer-sm-md: 3rem;
  }
}
.companies-grid {
  display: flex;
  flex-direction: column;
  gap: var(--spacer-sm-md);
}
.companies-grid .company {
  padding: var(--spacer-sm-md);
  background: linear-gradient(to bottom right, rgba(165, 124, 8, 0.075) 0%, rgba(165, 124, 8, 0) 100%);
}
.companies-grid img {
  width: 100%;
  margin: 0 0 2rem 0;
}
.companies-grid a {
  display: block;
  text-decoration: underline;
}
.companies-grid a:hover, .companies-grid a:active, .companies-grid a:focus {
  text-decoration: none;
}
.companies-grid a:hover .name, .companies-grid a:active .name, .companies-grid a:focus .name {
  color: #333;
}
.companies-grid a.company-head {
  text-decoration: none;
}
.companies-grid .name {
  font-weight: 700;
  margin: 0 0 1.4ch 0;
  transition: color 0.25s ease-in-out;
}
.companies-grid h4 {
  font-weight: 400;
}
.companies-grid p {
  font-size: 1.6rem;
}
.companies-grid p.title {
  font-size: 1.7rem;
  text-transform: uppercase;
}
.companies-grid p.phone {
  margin: 0 0 0.6ch 0;
}
.companies-grid p.mail {
  word-wrap: break-word;
  margin: 0 0 0.6ch 0;
}
.companies-grid p:last-child {
  margin: 0;
}
.companies-grid img {
  width: auto;
  height: 50px;
  margin: 0 0 20px 0;
}
@media (min-width: 600px) {
  .companies-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
  }
  .companies-grid .company {
    width: calc(50% - 15px);
  }
}/*# sourceMappingURL=block-adviser.css.map */