/* PromptMyImage experience layer — animated FAQ + mobile-first polish — v1.3.1 */

/* ------------------------------
   FAQ accordion motion system
------------------------------ */
body.home .pmi-react-faq-list {
  display: grid;
  gap: 10px;
}
body.home .pmi-react-faq-list article {
  overflow: hidden;
  border: 1px solid #e4e8f1;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(23, 36, 70, .035);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease, background-color .28s ease;
}
body.home .pmi-react-faq-list article:hover {
  border-color: #d7d0ff;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(72, 55, 168, .07);
}
body.home .pmi-react-faq-list article.is-open {
  border-color: #bdb3ff;
  background: linear-gradient(180deg, #fff 0%, #fcfbff 100%);
  box-shadow: 0 16px 38px rgba(88, 67, 190, .10);
}
body.home .pmi-react-faq-list h3 {
  margin: 0;
}
body.home .pmi-react-faq-list button {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) 34px;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 58px;
  padding: 15px 17px 15px 18px;
  border: 0;
  background: transparent;
  color: #16223a;
  text-align: left;
  font: 700 15px/1.45 Poppins, sans-serif;
  cursor: pointer;
}
body.home .pmi-react-faq-list button:focus-visible {
  outline: 3px solid rgba(99, 73, 225, .22);
  outline-offset: -3px;
  border-radius: 14px;
}
body.home .pmi-react-faq-plus {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #f2efff;
  color: #624be5;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), background-color .25s ease, color .25s ease;
}
body.home .pmi-react-faq-plus i {
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
}
body.home .pmi-react-faq-plus i:last-child {
  transform: rotate(90deg);
}
body.home .pmi-react-faq-list article.is-open .pmi-react-faq-plus {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #6652ec, #a64be8);
  color: #fff;
}
body.home .pmi-react-faq-list article.is-open .pmi-react-faq-plus i:last-child {
  transform: rotate(0deg);
  opacity: 0;
}
body.home .pmi-react-faq-answer {
  display: grid;
  padding: 0 !important;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .38s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
body.home .pmi-react-faq-answer-inner {
  overflow: hidden;
}
body.home .pmi-react-faq-answer p {
  margin: 0;
  padding: 0 62px 17px 18px;
  color: #5f6c82;
  font-size: 15px !important;
  line-height: 1.68 !important;
  transform: translateY(-6px);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
body.home .pmi-react-faq-list article.is-open .pmi-react-faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}
body.home .pmi-react-faq-list article.is-open .pmi-react-faq-answer p {
  transform: translateY(0);
}

/* Native fallback / dedicated FAQ page: graceful opening motion. */
.pmi-v118-faq-list details,
.pmi-faq-list details,
.pmi-faq-fallback details {
  overflow: clip;
  border: 1px solid #e4e8f1;
  border-radius: 15px;
  background: #fff;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.pmi-v118-faq-list details[open],
.pmi-faq-list details[open],
.pmi-faq-fallback details[open] {
  border-color: #bdb3ff;
  background: #fcfbff;
  box-shadow: 0 14px 34px rgba(88,67,190,.08);
}
.pmi-v118-faq-list details > p,
.pmi-faq-list details > p,
.pmi-faq-fallback details > p {
  animation: pmiFaqReveal .34s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes pmiFaqReveal {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------
   Mobile navigation experience
------------------------------ */
@media (max-width:1080px) {
  /* Keep the drawer fixed to the viewport. A backdrop-filter on the header can
     turn it into the containing block of fixed descendants on mobile browsers. */
  .pmi-header-v130 {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  html.pmi-menu-open,
  html.pmi-menu-open body {
    overflow: hidden;
  }
  html.pmi-menu-open body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(10, 20, 42, .38);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    animation: pmiOverlayIn .24s ease both;
  }
  .pmi-header-v130 {
    position: sticky;
    z-index: 1000;
    isolation: isolate;
  }
  .pmi-header-v130 .pmi-header-shell {
    min-height: 72px;
    gap: 14px;
  }
  .pmi-menu-toggle {
    position: relative;
    display: grid !important;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #e1e6f0;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26, 39, 72, .07);
  }
  .pmi-menu-toggle span {
    position: absolute;
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: #17223a;
  }
  .pmi-menu-toggle span:nth-child(1) { transform: translateY(-6px); }
  .pmi-menu-toggle span:nth-child(3) { transform: translateY(6px); }
  .pmi-header-v130.is-open .pmi-menu-toggle {
    border-color: #cfc7ff;
    background: #f5f2ff;
  }
  .pmi-header-v130.is-open .pmi-menu-toggle span:nth-child(1) { transform: rotate(45deg); }
  .pmi-header-v130.is-open .pmi-menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(.3); }
  .pmi-header-v130.is-open .pmi-menu-toggle span:nth-child(3) { transform: rotate(-45deg); }

  .pmi-mobile-panel {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    z-index: 2147482000;
    display: block !important;
    width: min(430px, 94vw);
    border-top: 0;
    border-left: 1px solid #e3e8f2;
    background: #fff;
    box-shadow: -24px 0 70px rgba(17, 29, 56, .18);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    transform: translateX(104%);
    will-change: transform, opacity;
    transition: transform .34s cubic-bezier(.2,.8,.2,1), opacity .24s ease, visibility 0s linear .34s;
  }
  .admin-bar .pmi-mobile-panel { top: 118px; max-height: calc(100dvh - 118px); }
  @media (max-width:782px) {
    .admin-bar .pmi-mobile-panel { top: 116px; max-height: calc(100dvh - 116px); }
  }
  .pmi-header-v130.is-open .pmi-mobile-panel {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0s;
  }
  .pmi-mobile-panel-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 22px;
    width: 100%;
    padding: 20px 20px calc(24px + env(safe-area-inset-bottom));
  }
  .pmi-mobile-panel nav {
    display: grid;
    gap: 7px;
  }
  .pmi-mobile-panel nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 0 14px;
    border: 0;
    border-radius: 13px;
    background: #fff;
    color: #172239;
    font-size: 15px;
    font-weight: 700;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
  }
  .pmi-mobile-panel nav a::after {
    content: "›";
    margin-left: auto;
    color: #a2acbd;
    font-size: 24px;
    font-weight: 400;
  }
  .pmi-mobile-panel nav a:hover,
  .pmi-mobile-panel nav a:focus-visible {
    background: #f4f1ff;
    color: #5d47dc;
    transform: translateX(2px);
    outline: none;
  }
  .pmi-mobile-resources {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding-top: 17px;
    border-top: 1px solid #edf0f5;
  }
  .pmi-mobile-resources > span {
    margin-bottom: 3px;
    color: #7f899d;
    font-size: 12px;
    letter-spacing: .10em;
  }
  .pmi-mobile-resources a,
  .pmi-mobile-account a,
  .pmi-mobile-login {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid #e7eaf1;
    border-radius: 12px;
    background: #f8f9fc;
    color: #263149;
    font-size: 14px;
    font-weight: 650;
  }
  .pmi-mobile-account {
    padding: 16px;
    border: 1px solid #e4e8f1;
    border-radius: 15px;
    background: linear-gradient(135deg,#f7f9ff,#fbf7ff);
  }
  .pmi-mobile-account strong {
    color: #5745cf;
  }
  .pmi-mobile-login {
    justify-content: center;
    background: #fff;
  }
  .pmi-mobile-cta {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin-top: auto;
    min-height: 52px !important;
    border-radius: 14px !important;
    box-shadow: 0 14px 34px rgba(108, 61, 224, .24);
  }
}
@keyframes pmiOverlayIn { from { opacity: 0; } to { opacity: 1; } }

/* ------------------------------
   Mobile homepage refinement
------------------------------ */
@media (max-width:760px) {
  body.home .container,
  .pmi-header-v130 .container {
    width: min(100% - 28px, 100%) !important;
  }
  .pmi-header-v130 .brand-logo-image {
    max-width: 190px;
    max-height: 42px;
  }

  body.home .pmi-v118-hero {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  body.home .pmi-v118-hero-grid {
    gap: 30px !important;
  }
  body.home .pmi-v118-hero-copy {
    max-width: none !important;
  }
  body.home .pmi-v118-hero h1 {
    max-width: 12ch;
    margin: 12px 0 16px;
    font-size: clamp(40px, 12vw, 54px) !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;
  }
  body.home .pmi-v118-lead {
    font-size: 15px !important;
    line-height: 1.62 !important;
  }
  body.home .pmi-v118-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  body.home .pmi-v118-hero-actions .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    border-radius: 13px;
  }
  body.home .pmi-v118-microproof {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
  body.home .pmi-v118-microproof span {
    font-size: 13px !important;
  }

  body.home .pmi-react-demo,
  body.home .pmi-v118-demo-card {
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 22px 52px rgba(24, 36, 68, .12) !important;
  }
  body.home .pmi-react-demo-source,
  body.home .pmi-react-demo-output,
  body.home .pmi-v118-demo-source,
  body.home .pmi-v118-demo-output {
    padding: 13px !important;
  }
  body.home .pmi-react-tabs {
    margin-inline: -2px;
    padding-bottom: 7px;
  }
  body.home .pmi-react-tabs button {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 13px !important;
  }
  body.home .pmi-react-prompt-copy {
    min-height: 0;
  }

  body.home .pmi-v118-benefits {
    padding: 12px 0 20px !important;
  }
  body.home .pmi-v118-benefit-grid {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 78vw);
    grid-template-columns: none !important;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    border: 0 !important;
    background: transparent !important;
  }
  body.home .pmi-v118-benefit-grid::-webkit-scrollbar { display: none; }
  body.home .pmi-v118-benefit-grid > div {
    scroll-snap-align: start;
    min-height: 78px;
    padding: 14px !important;
    border: 1px solid #e5e9f2 !important;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(24,36,68,.04);
  }

  body.home .pmi-v118-steps {
    padding: 40px 0 32px !important;
  }
  body.home .pmi-v118-centered-title,
  body.home .pmi-v118-proof h2,
  body.home .pmi-v118-examples-panel h2,
  body.home .pmi-v118-pricing h2 {
    font-size: clamp(30px, 9vw, 40px) !important;
    line-height: 1.04 !important;
  }
  body.home .pmi-react-stepper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  body.home .pmi-react-stepper-line { display: none; }
  body.home .pmi-react-stepper article {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0,1fr);
    column-gap: 14px;
    align-items: center;
    padding: 15px;
    border: 1px solid #e5e9f2;
    border-radius: 16px;
    background: #fff;
    text-align: left;
    box-shadow: 0 10px 28px rgba(24,36,68,.045);
  }
  body.home .pmi-react-step-number { display: none; }
  body.home .pmi-react-step-icon {
    grid-row: 1 / span 2;
    width: 46px;
    height: 46px;
    margin: 0;
  }
  body.home .pmi-react-stepper h3,
  body.home .pmi-react-stepper p {
    margin: 0;
    text-align: left;
  }

  body.home .pmi-v118-proof {
    padding: 28px 0 44px !important;
  }
  body.home .pmi-v118-compare-card,
  body.home .pmi-v118-examples-panel {
    padding: 16px !important;
    border-radius: 18px !important;
  }
  body.home .pmi-react-compare-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body.home .pmi-react-compare-toggle button {
    min-height: 42px;
  }
  body.home .pmi-v118-compare-table {
    border: 0;
    display: grid;
    gap: 9px;
    overflow: visible;
    box-shadow: none;
  }
  body.home .pmi-v118-compare-table > .is-head { display: none; }
  body.home .pmi-v118-compare-table > div:not(.is-head) {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 0;
    overflow: hidden;
    border: 1px solid #e4e8f1 !important;
    border-radius: 13px;
    background: #fff;
  }
  body.home .pmi-v118-compare-table > div > span:first-child {
    grid-column: 1 / -1;
    padding: 11px 12px 8px !important;
    border-bottom: 1px solid #edf0f5;
    color: #172239;
    font-weight: 700;
  }
  body.home .pmi-v118-compare-table > div > span:nth-child(2),
  body.home .pmi-v118-compare-table > div > span:nth-child(3) {
    min-height: 42px;
    padding: 10px 12px !important;
    font-size: 13px !important;
  }
  body.home .pmi-v118-compare-table > div > span:nth-child(2) {
    border-right: 1px solid #edf0f5;
    background: #fafbfc;
  }

  body.home .pmi-react-example-grid {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 72vw);
    grid-template-columns: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  body.home .pmi-react-example-grid::-webkit-scrollbar { display: none; }
  body.home .pmi-react-example-grid button { scroll-snap-align: start; }
  body.home .pmi-react-example-detail {
    grid-template-columns: 1fr !important;
    gap: 15px;
    padding: 12px !important;
  }
  body.home .pmi-react-example-detail > img {
    width: 100%;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 13px;
  }
  body.home .pmi-react-example-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  body.home .pmi-react-example-actions .btn { width: 100%; justify-content: center; }

  body.home .pmi-v118-trust {
    padding: 36px 0 !important;
  }
  body.home .pmi-v118-trust-grid {
    gap: 15px !important;
    padding: 17px !important;
    border-radius: 18px !important;
  }
  body.home .pmi-v118-trust-copy {
    align-items: flex-start;
  }
  body.home .pmi-v118-trust-copy > .pmi-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }
  body.home .pmi-v118-trust-grid > ul {
    padding-left: 0;
    list-style: none;
  }
  body.home .pmi-v118-trust-grid > ul li {
    position: relative;
    padding-left: 24px;
  }
  body.home .pmi-v118-trust-grid > ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #29a36a;
    font-weight: 800;
  }
  body.home .pmi-v118-trust-facts {
    grid-template-columns: 1fr !important;
  }

  body.home .pmi-v118-pricing {
    padding: 54px 0 !important;
  }
  body.home .pmi-v118-pricing-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 82vw);
    grid-template-columns: none !important;
    gap: 13px;
    max-width: none !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 18px 0 12px;
  }
  body.home .pmi-v118-pricing-grid::-webkit-scrollbar { display: none; }
  body.home .pmi-v118-pricing-grid article {
    scroll-snap-align: center;
    min-height: 390px;
    transform: none !important;
  }

  body.home .pmi-v118-faq {
    padding: 48px 0 !important;
  }
  body.home .pmi-v118-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  body.home .pmi-v118-faq-grid > div:first-child {
    text-align: center;
  }
  body.home .pmi-react-faq-list button {
    min-height: 58px;
    padding: 14px;
    font-size: 14px;
  }
  body.home .pmi-react-faq-answer p {
    padding: 0 48px 16px 14px;
    font-size: 14px !important;
  }
  body.home .pmi-v118-ready-card {
    display: grid !important;
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 22px !important;
  }
  body.home .pmi-v118-ready-card .btn {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
  }

  body.home .pmi-v118-final {
    padding: 30px 0 42px !important;
  }
  body.home .pmi-v118-final-inner {
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 22px 18px !important;
    text-align: center;
  }
  body.home .pmi-v118-final-icon { margin: auto; }
  body.home .pmi-v118-final-inner .btn { width: 100%; justify-content: center; }

  body.home .site-footer {
    padding-top: 42px !important;
  }
  body.home .site-footer .container {
    width: min(100% - 32px, 100%) !important;
  }
}

@media (max-width:480px) {
  .pmi-mobile-panel { width: 100vw; }
  .pmi-mobile-resources { grid-template-columns: 1fr; }
  body.home .pmi-v118-microproof { grid-template-columns: 1fr; }
  body.home .pmi-v118-hero h1 { font-size: clamp(38px, 12vw, 48px) !important; }
  body.home .pmi-react-example-grid { grid-auto-columns: 84vw; }
  body.home .pmi-v118-pricing-grid { grid-auto-columns: 88vw; }
}

@media (prefers-reduced-motion: reduce) {
  body.home .pmi-react-faq-list article,
  body.home .pmi-react-faq-plus,
  body.home .pmi-react-faq-plus i,
  body.home .pmi-react-faq-answer,
  body.home .pmi-react-faq-answer p,
  .pmi-mobile-panel,
  .pmi-menu-toggle span {
    transition: none !important;
    animation: none !important;
  }
}


/* v1.3.4 — opaque, viewport-safe mobile navigation surface. */
@media (max-width:1080px) {
  html.pmi-menu-open body::before { content: none !important; }

  .pmi-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147482990;
    display: block;
    background: rgba(10, 20, 42, .46);
    opacity: 0;
    transition: opacity .22s ease;
  }
  .pmi-mobile-backdrop[hidden] { display: none !important; }
  .pmi-header-v130.is-open .pmi-mobile-backdrop { opacity: 1; }

  .pmi-mobile-panel {
    z-index: 2147483000 !important;
    isolation: isolate;
    background: #fff !important;
    background-color: #fff !important;
    opacity: 0;
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color-scheme: light;
  }
  .pmi-header-v130.is-open .pmi-mobile-panel { opacity: 1; }

  .pmi-mobile-panel-header {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 12px 18px;
    border-bottom: 1px solid #e9edf4;
    background: #fff;
  }
  .pmi-mobile-panel-brand .brand-link { display: inline-flex; }
  .pmi-mobile-panel-brand .brand-logo-image {
    display: block;
    width: auto;
    max-width: 205px;
    max-height: 44px;
  }
  .pmi-mobile-panel-close {
    position: relative;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid #e1e6f0;
    border-radius: 13px;
    background: #f8f7ff;
    color: #17223a;
    cursor: pointer;
  }
  .pmi-mobile-panel-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }
  .pmi-mobile-panel-close span:first-child { transform: translate(-50%,-50%) rotate(45deg); }
  .pmi-mobile-panel-close span:last-child { transform: translate(-50%,-50%) rotate(-45deg); }
  .pmi-mobile-panel-close:focus-visible {
    outline: 3px solid rgba(104, 78, 237, .25);
    outline-offset: 2px;
  }
  .pmi-mobile-panel-inner { background: #fff; }
}

@media (max-width:760px) {
  .pmi-mobile-backdrop { display: none !important; }
  .pmi-mobile-panel {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    max-height: 100dvh !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transform: translateX(100%) !important;
  }
  .admin-bar .pmi-mobile-panel {
    top: 46px !important;
    max-height: calc(100dvh - 46px) !important;
  }
  .pmi-header-v130.is-open .pmi-mobile-panel { transform: translateX(0) !important; }
  .pmi-mobile-panel-inner {
    min-height: calc(100% - 72px);
    padding: 16px 18px calc(22px + env(safe-area-inset-bottom)) !important;
    gap: 18px;
  }
  .pmi-mobile-panel nav { gap: 4px; }
  .pmi-mobile-panel nav a {
    min-height: 48px;
    padding: 0 12px;
    border-radius: 12px;
  }
  .pmi-mobile-resources { grid-template-columns: 1fr 1fr !important; }
  .pmi-mobile-account { padding: 14px; }
  .pmi-mobile-cta {
    position: sticky;
    bottom: calc(4px + env(safe-area-inset-bottom));
  }
}

@media (max-width:420px) {
  .pmi-mobile-resources { grid-template-columns: 1fr !important; }
  .pmi-mobile-panel-brand .brand-logo-image { max-width: 180px; }
}
