﻿/* Doctor-review layout: real logo in header, no hero artwork */
.brand-mark,
.brand-name {
  display: none;
}

.brand::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 9px;
  background: #1d6075 url("assets/hfc-logo.jpg") center / contain no-repeat;
  box-shadow: 0 7px 20px rgba(7, 63, 77, .12);
}

.welcome {
  display: block !important;
  min-height: calc(100vh - 112px);
  padding-top: clamp(70px, 10vw, 130px);
}

.welcome-copy {
  max-width: 760px;
}

.welcome-art {
  display: none !important;
}

@media (max-width: 600px) {
  .brand::before {
    width: 48px;
    height: 48px;
    border-radius: 8px;
  }

  .welcome {
    min-height: auto;
    padding-top: 55px;
    padding-bottom: 90px;
  }
}

