/* NameVerse overrides on top of the theme (main.min.css) */

/* Hero headline: theme sizes h1 at 90px for short headlines; ours is longer,
   so scale it down responsively to keep the hero compact. */
.hero-1 .hero-content h1 {
    font-size: clamp(38px, 4.2vw, 60px);
    line-height: 1.15;
}

/* Service showcase images are landscape photos shown in a portrait box
   (337x398) - cover-fit them so the crop is centered instead of showing
   the top-left corner. */
.service-main-items .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ accordion: the theme gives .accordion-body margin-top:-10px and no
   top padding, so expanded answers clip against the question above and sit
   tight on the divider below - restore breathing room. */
.faq-accordion .accordion-body {
    margin-top: 0;
    padding: 15px 50px 25px 0;
}
