.quote-side .logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 154px;
  min-height: 76px;
  padding: 0 0 14px;
  background: transparent;
  transition: transform .35s ease, filter .35s ease;
}

.quote-side .logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: var(--aqua);
  box-shadow: 0 0 18px rgba(21, 199, 188, .5);
  transition: width .45s cubic-bezier(.2,.8,.2,1);
}

.quote-side .logo:hover {
  transform: translateX(5px);
  filter: drop-shadow(0 0 12px rgba(21, 199, 188, .22));
}

.quote-side .logo:hover::after { width: 100%; }

.quote-side .logo img {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .quote-side .logo {
    width: 132px;
    min-height: 66px;
    padding: 0 0 10px;
  }

  .quote-side .logo img {
    width: 120px;
    height: 56px;
  }
}

.quote-main .consent { align-items: flex-start; line-height: 1.5; }
.quote-main .consent a { color: var(--aqua2); font-weight: 700; text-underline-offset: 3px; }
.quote-main .consent a:hover { color: var(--ink); }
