/*!
 * Real Estate Advisor Theme - Custom Styles
 * Extends Quark2 theme with real estate specific components
 */

/* ===== Hide blog on specific pages ===== */
body.route-search .navbar-section.actions .btn[href*="/blog"],
body.route-mentions-legales .navbar-section.actions .btn[href*="/blog"],
body.search .navbar-section.actions .btn[href*="/blog"],
body.mentions-legales .navbar-section.actions .btn[href*="/blog"] {
  display: none !important;
}

body.route-search .dropmenu li a[href*="/blog"],
body.route-mentions-legales .dropmenu li a[href*="/blog"],
body.search .dropmenu li a[href*="/blog"],
body.mentions-legales .dropmenu li a[href*="/blog"] {
  display: none !important;
}

/* ===== Global ===== */

h2 {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 3rem);
}
h2::before { content: none !important; }

/* ===== Back to top icon menu ===== */
.dropmenu a[href="#hero"],
.navigation .home-icon-menu a {
  font-size: 0;
  line-height: 1;
}
.dropmenu a[href="#hero"]::before,
.navigation .home-icon-menu a::before {
  content: "\f015";
  font-family: "Font Awesome 7 Free", "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
}

.form-wrapper .form-data.basic-captcha .form-input-prepend img { max-width: 184px; }

.lead {
    color: #5d5d5d;
}

.clip strong, b {
    font-weight: 400;
}

.smaller-text {
    font-size: 0.7rem;
}

/* ===== Layout ===== */
.container-narrow { max-width: 800px; margin-inline: auto; }

/* ===== Flex utilities ===== */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-1 { flex: 1; margin: 2vh; text-align: center; }
.flex-2 { flex: 2; }
.gap-2 { gap: 0.5rem; }
.justify-center { justify-content: center; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.w-100 { width: 100%; }
.opacity-75 { opacity: 0.85; }

/* ===== Buttons ===== */
[type=button], [type=reset], [type=submit] { margin-bottom: 0; }
.d-none { display: none !important; }
.button-wrapper {
  display: flex;
  gap: 40px;
  flex-direction: row-reverse;
  padding-top: 4vh;
}

/* ===== Form inputs ===== */
input:not([type=checkbox],[type=radio]), select, textarea { margin-bottom: 0; }
.p-3 { padding: 5px 0px 5px 35px; }
.p-4 { padding: .8rem 0 0; width: 6em; height: 6em; }
.p-5 { padding: .8rem 0 0; width: 7em; height: 6em; }
#add-location-button { margin-top: 1rem; }

.form-message-inline {
  border: 1px solid var(--q2-border-color);
  border-left: 5px solid var(--q2-accent);
  border-radius: var(--q2-radius-md);
  padding: 0.85rem 1rem;
  margin: 0 0 1rem;
  background: var(--q2-bg-elev);
  color: var(--q2-text);
  box-shadow: var(--q2-shadow-card);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-message-inline.is-hidden {
  opacity: 0;
  transform: translateY(-0.25rem);
  pointer-events: none;
}

.form-message-inline--green {
  border-left-color: #16a34a;
}

.form-message-inline--red {
  border-left-color: #dc2626;
}

.form-message-inline--yellow {
  border-left-color: #ca8a04;
}

/* ===== Property Card ===== */
.property-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--q2-radius-md);
  box-shadow: var(--q2-shadow-card);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.property-card:hover {
  box-shadow: var(--q2-shadow-raised);
  transform: translateY(-4px);
}

.property-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.property-card:hover .property-image img { transform: scale(1.05); }

.property-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: var(--q2-accent);
  color: var(--q2-text-inverse);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--q2-radius-pill);
}

.property-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--q2-accent);
  margin-bottom: 0.5rem;
}

.property-address {
  color: var(--q2-text-muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.property-features {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--q2-text-muted);
  font-size: 0.875rem;
}

.property-features span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ===== Card Grid (shared by Property Grid & Blog) ===== */
.property-grid,
.blog-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 640px) {
  .property-grid,
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .property-grid,
  .blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===== Estimate Wizard ===== */
#estimate-form .card-body,
#estimate-wizard .card-body { padding: 1rem; }
#estimate-wizard.card:hover,
#address-suggestions:hover { transform: translateY(0); }
#estimate-wizard { overflow: visible !important; }
#address-suggestions {
  position: relative;
  z-index: 1000;
  font-size: smaller;
  max-height: 200px;
  overflow-y: auto;
  left: 1rem;
  right: 0;
  margin: -1rem 3rem 1rem 1rem;
  padding: 0 1rem 0.5rem 0;
}
#address-suggestions .p-2:hover { background-color: color-mix(in oklab, var(--q2-accent) 10%, transparent); }
.modular-estimate .step { display: none; }
.modular-estimate .step.active { display: block; }
.modular-estimate .card[style*="cursor: pointer"] {
  box-shadow: none;
  transition: none;
  border: 0 !important;
}
#sale-now .card[style*="cursor: pointer"] { padding: 5px 0px 5px 35px; }
.modular-estimate .card[style*="cursor: pointer"]:hover {
  box-shadow: none;
  transform: scale3d(1.1, 1.1, 1);
}
.modular-estimate .step[data-step="7"] .card[style*="cursor: pointer"]:hover,
.modular-estimate .step[data-step="8"] .card[style*="cursor: pointer"]:hover {
  transform: none;
  background-color: color-mix(in oklab, var(--q2-accent) 16%, transparent);
}
.modular-estimate .card[style*="cursor: pointer"]:focus-visible {
  padding: 10px;
  background-color: color-mix(in oklab, var(--q2-accent) 10%, transparent);
}
#property-search-form input[type="checkbox"] + label , .modular-estimate input[type="checkbox"] + label {
  font-size: 0.875rem;
  color: var(--q2-text-muted);
}
.modular-estimate input[type="checkbox"] + label a { color: var(--q2-accent); }
.modular-estimate .form-label {
  text-align: left;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

/* Step 1 - button inside input */
#estimate-form .step[data-step="1"] .position-relative {
  height: 42px;
}
#estimate-form .step[data-step="1"] .form-input {
  height: 100%;
  box-sizing: border-box;
}

/* Step 6 - Sale project options */
.modular-estimate #step-6 .card { margin-bottom: 0.5rem; }

/* ===== Captcha ===== */
.basic-captcha .form-input-wrapper > .form-input-addon.form-input-prepend {
  width: 100%;
  flex: 0 1 auto;
  display: flex;
  gap: 0;
  align-items: stretch;
  box-sizing: border-box;
}
.basic-captcha .form-input-wrapper > .form-input-addon.form-input-prepend img {
  height: 60px;
  flex-shrink: 0;
  max-height: 60px;
  display: block;
}
.basic-captcha .form-input-wrapper > .form-input-addon.form-input-prepend button {
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  background: #0172ad;
  cursor: pointer;
  line-height: 1;
  width: 60px;
  flex: 0 0 60px;
}
.basic-captcha .form-input-wrapper > .form-input-addon.form-input-prepend button svg {
  width: 32px;
  height: 32px;
}
.basic-captcha input[type="text"] {
  height: 60px !important;
  display: block;
}
/* ===== Contact Form & Captcha Mobile ===== */
@media (max-width: 767px) {
  .modular-contact .d-flex.gap-3,
  #search-form-container .d-flex.gap-3 {
    flex-wrap: wrap;
  }
  .modular-contact .d-flex.gap-3 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .modular-contact .flex-2 .card {
    margin: 0;
    padding: 2rem;
    border-top: 1px solid var(--q2-bg-muted);
  }
  .basic-captcha .form-input-addon.form-input-prepend,
  .basic-captcha .form-input-wrapper > .form-input-addon.form-input-prepend {
    width: 100%;
  }
  .basic-captcha .form-input-addon.form-input-prepend img,
  .basic-captcha .form-input-wrapper > .form-input-addon.form-input-prepend img {
    max-height: 40px;
    height: auto;
  }
  .basic-captcha .form-input-addon.form-input-prepend button,
  .basic-captcha .form-input-wrapper > .form-input-addon.form-input-prepend button {
    height: 40px;
    width: 40px;
    flex: 0 0 40px;
  }
  .basic-captcha input[type="text"] {
    height: 40px !important;
    border-top: 1px solid var(--q2-bg-muted) !important;
  }
  #search-form-container .card-body {
    padding: 1rem;
  }
  #search-form-container h4 {
    font-size: 1.25rem;
  }
  #search-form-container + .row {
    --bs-gutter-x: 0.75rem;
  }
  #search-form-container .col-md-6 {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
/*   #search-form-container .d-flex.gap-3 > .flex-1,
  #search-form-container .d-flex.gap-3 > .flex-2 {
    flex: 0 0 100%;
    max-width: 100%;
  } */
/*   #search-form-container .d-flex.gap-2 > .flex-1 {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  } */
  #search-form-container .input-group {
    flex-direction: column;
  }
  #search-form-container .input-group .form-control {
    width: 100%;
  }
  #search-form-container .input-group .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}

/* ===== Hero ===== */
#blog-hero, .modular-hero, .hero {
  padding-block: clamp(5rem, 22vw, 23rem);
}
.hero .btn.btn-outline {
  color: var(--q2-text-inverse);
  background: transparent;
  border: 1px solid var(--q2-text-inverse);
}
.hero .btn.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--q2-text-inverse);
}
#header .navbar { min-height: 52px; }
.navbar-brand img, .navbar-brand svg {
  height: 44px;
  max-width: 400px;
}
.pic img {
  height: 150px;
  margin-top: 5vh;
  width: auto;
  position: relative;
  border-radius: 100%;
  border-color: rgb(22 19 19 / 4%);
  border-style: solid;
  border-width: 3px;
}
.sub { margin-top: -2vh; }
.btn-logo { background-color: transparent; }
.logo-flex {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: -12px;
}
.logo-flex img:hover, .logo-flex svg:hover { transform: scale(1.2); }
.logo-flex svg {
  width: 100%;
  height: auto;
  display: block;
}
html[data-theme=dark] .navbar-brand .img--invert, html[data-theme=dark] .logo-invert {
  filter: invert(1);
}
@media (max-width: 860px) {
  .navbar-brand img, .navbar-brand svg { max-width: 300px; }
}

/* ===== Propertips Banner ===== */
.modular-banner-pt a {
  display: block;
  border-radius: var(--q2-radius-md);
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
}
.modular-banner-pt a:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.banner-pt {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 2fr 3fr 2fr;
  gap: 1rem;
  align-items: center;
  justify-items: center;
  background-color: aliceblue;
  color: var(--q2-text);
  padding: 2rem 3rem;
  text-align: center;
}
.banner-pt__highlight {
  background-color: #00628c;
  color: #fff;
  transform: rotate(-2deg);
  display: inline-block !important;
  padding: 0px 8px !important;
  translate: 0px -3px;
}
.banner-pt__left,
.banner-pt__right {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.banner-pt__label1,
.banner-pt__label2 {
  font-weight: 600;
  text-align: center;
}
.banner-pt__label1 {
  font-size: clamp(1rem, 2vw + 1rem, 2rem);
  line-height: 1.7;
}
.banner-pt__label2 {
  font-size: 1.2rem;
  line-height: 1.3;
}
.banner-pt__center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}
.banner-pt__logo {
  max-height: 90px;
  width: auto;
}
@media (max-width: 767px) {
  .banner-pt {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    justify-items: center;
  }
  .banner-pt__center {
    justify-self: center;
  }
  .banner-pt__left,
  .banner-pt__right {
    align-items: center;
    text-align: center;
  }
}

/* ===== Search Form Styles ===== */

#search-form-container .mb-3 {
  position: relative;
}

.suggestions-box {
  position: absolute;
  background: white;
  border: 1px solid var(--q2-border);
  border-radius: var(--q2-radius);
  box-shadow: var(--q2-shadow-raised);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  display: none;
}

.suggestion-item {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.15s ease;
}

.suggestion-item:hover,
.suggestion-item:focus {
  background-color: color-mix(in oklab, var(--q2-accent) 10%, transparent);
}
#search-form-container {
  border-radius: var(--q2-radius-lg);
  overflow: hidden;
  box-shadow: var(--q2-shadow-card);
  transition: box-shadow 0.2s ease;
}
#search-form-container:hover { box-shadow: var(--q2-shadow-raised); }
#search-form-container .card-body { padding: 1.5rem; }
#search-form-container h4 {
  color: var(--q2-text-dark);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}
#search-form-container .form-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--q2-text-muted);
}
#search-form-container .form-input,
#search-form-container .form-select {
  border-radius: var(--q2-radius);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#search-form-container .form-input:focus,
#search-form-container .form-select:focus {
  outline: none;
  border-color: var(--q2-accent);
  box-shadow: 0 0 0 0.2rem color-mix(in oklab, var(--q2-accent) 25%, transparent);
}
#search-form-container .input-group {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
#search-form-container .input-group .form-control {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}
#search-form-container .input-group .btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  white-space: nowrap;
}
#search-form-container #location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
#search-form-container #location-tags .badge {
  padding: 0.25rem 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--q2-radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background-color: #93c5fd;
  color: #1e3a8a;
  border: none;
  margin: 0.25rem;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
#search-form-container #location-tags .badge:hover {
  background-color: var(--q2-accent);
  color: var(--q2-text-inverse);
  transform: translateY(-1px);
}
#search-form-container #location-tags .badge .location-remove {
  padding: 0;
  width: 1.2rem;
  height: 1.2rem;
  line-height: 1.1rem;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  font-size: 0.85rem;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  opacity: 1;
  cursor: pointer;
}

#search-form-container label.card {
  border: 2px solid transparent;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
#search-form-container input[type="radio"]:checked + label.card {
  border: 2px solid var(--q2-accent);
  background-color: color-mix(in oklab, var(--q2-accent) 8%, transparent);
}
#search-form-container input[type="radio"]:focus-visible + label {
  background-color: color-mix(in oklab, var(--q2-accent) 10%, transparent);
  outline: 2px solid var(--q2-accent);
  outline-offset: 2px;
}

#search-form-container .small-text {
  font-size: 0.75rem;
  color: var(--q2-text-muted);
}
#search-form-container .step { display: none; }
#search-form-container .step.active { display: block; }
#search-form-container .btn-primary {
  background-color: var(--q2-accent);
  border-color: var(--q2-accent);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--q2-radius);
}
#search-form-container .btn-primary:hover { opacity: 0.8; }
#search-form-container .btn-primary:active { transform: translateY(0); }

/* Contact form layout adjustments (desktop base) */    
.modular-contact .flex-2 .card {
  margin: 0 3rem;
  padding: 3rem;
  box-shadow: none;
  border: 1px solid var(--q2-border-color);
  transition: none;
  transform: none;
}

.flex-1.d-flex.flex-column.justify-center { padding-left: 2rem; }
.flex-1.d-flex.flex-column.justify-center .logo-flex { justify-content: center; }

.content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 1rem;
}
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--q2-text-dark);
}
.content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--q2-text);
}
.content ul,
.content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.content blockquote {
  border-left: 4px solid var(--q2-accent);
  padding-left: 1rem;
  margin-left: 0;
  margin-right: 0;
  font-style: italic;
  color: var(--q2-text-muted);
}

/* ===== Reviews Banner ===== */
.reviews-banner {
  overflow: hidden;
  background: #f8f9fb;
  padding: 20px 0;
}

.reviews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll 35s linear infinite;
  flex-shrink: 0;
}

.reviews-set {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.review {
  min-width: 280px;
  max-width: 280px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-size: 14px;
  flex-shrink: 0;
}

.review p {
  margin: 10px 0;
}

.review span {
  font-weight: bold;
  font-size: 13px;
}

.stars {
  color: #f5b50a;
  font-size: 16px;
}

.reviews-banner:hover .reviews-track {
  animation-play-state: paused;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.reviews-header svg {
  display: inline-block;
}

.reviews-track a.review {
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.reviews-track a.review:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .review {
    min-width: 220px;
    max-width: 220px;
  }
  .modular-contact .flex-2 .card { 
    margin: 0; 
    padding: 2rem; 
  }
  .flex-1.d-flex.flex-column.justify-center { padding-left: 0; }
}

/* ===== DPE / GES Color Scheme ===== */
.dpe-chip, .ges-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
}
.dpe-chip:hover, .ges-chip:hover {
  transform: scale(1.1);
}
input[type="radio"]:checked + .dpe-chip,
input[type="radio"]:checked + .ges-chip {
  outline: 3px solid var(--q2-accent);
  outline-offset: 2px;
}
.dpe-ges-line {
  flex: 0 0 100%;
  justify-content: center;
}
.dpe-na { background-color: #3d3d3d; }
.dpe-A { background-color: #3CB371; }
.dpe-B { background-color: #7BC67E; }
.dpe-C { background-color: #C9D87C; }
.dpe-D { background-color: #E8D44D; }
.dpe-E { background-color: #E89B3D; }
.dpe-F { background-color: #D95F35; }
.dpe-G { background-color: #A52A2A; }

.ges-na { background-color: #3d3d3d; }
.ges-A { background-color: #ccacff; }
.ges-B { background-color: #9f84ca; }
.ges-C { background-color: #7b63a3; }
.ges-D { background-color: #6a48a1; }
.ges-E { background-color: #5e3f91; }
.ges-F { background-color: #4f337c; }
.ges-G { background-color: #321e52; }

.btn.btn-ghost:hover, .btn.btn-outline:hover {
  background: var(--q2-accent);
  opacity: 0.9;
}

/* ===== Mobile Forms (below 536px) ===== */
@media (max-width: 535px) {
  #estimate-form .d-flex.gap-2:not(.dpe-ges-line):not(.flex-column):not(.button-row) .flex-1,
  #search-form-container .d-flex.gap-2:not(.dpe-ges-line):not(.flex-column):not(.button-row) .flex-1 {
    zoom: 0.7;
  }

  #estimate-form .d-flex.gap-2 .flex-2,
  #search-form-container .d-flex.gap-2 .flex-2 {
    zoom: 0.7;
  }
  .form-select {
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
  }
  .dpe-ges-line {
    gap: 0.4rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
  #estimate-form .flex-1:has(.dpe-ges-line),
  #search-form-container .flex-1:has(.dpe-ges-line) {
    margin: 0 !important;
  }
  .dpe-chip, .ges-chip {
    width: clamp(22px, 6vw, 26px);
    height: clamp(22px, 6vw, 26px);
    font-size: clamp(0.55rem, 2vw, 0.65rem);
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
  }
  .dpe-chip, .ges-chip {
    width: clamp(26px, 7vw, 32px);
    height: clamp(26px, 7vw, 32px);
    font-size: clamp(0.6rem, 2.5vw, 0.75rem);
  }
  .button-row {
    padding-top: 3vh;
  }
.cd-headline.clip .cd-words-wrapper {
    font-size: 30px;
 }
}

/* force refresh */