/* =============================================================
   UNIVERSAL CLASSIFIEDS — Ad Detail Page (BEM + custom properties)
   Gli alias --cwh-color-* puntano ai token globali di frontend.css.
   ============================================================= */

:root {
  --cwh-color-primary:      var(--cwh-primary, #24539b);
  --cwh-color-accent:       var(--cwh-accent, #e2a23b);
  --cwh-color-text:         var(--cwh-text, #2c3441);
  --cwh-color-muted:        var(--cwh-muted, #5d6573);
  --cwh-color-border:       var(--cwh-border, #e6e2d8);
  --cwh-color-bg:           var(--cwh-paper, #faf8f3);
  --cwh-chip-yes-bg:        var(--cwh-success-soft, #ecf6f0);
  --cwh-chip-yes-text:      var(--cwh-success, #2e7d4f);
  --cwh-chip-no-bg:         #f5f5f5;
  --cwh-chip-no-text:       #767676;
}

/* --- Bordo laterale primario sulle card di dettaglio ----------------------- */
/* Evita l'effetto "bianco su bianco": ogni card della colonna principale
   riceve un accento laterale nel colore primario UIkit. */
.cwh-ad-main-col .uk-card-default {
  border-left: 4px solid var(--cwh-color-primary);
}

/* --- Header (box principale — massima enfasi) ------------------------------ */
.cwh-ad__header {
  position: relative;
  background:
    linear-gradient(180deg, var(--cwh-primary-soft, #eef3fa) 0%, #fff 65%);
  border: 1px solid var(--cwh-color-border);
  border-left: 5px solid var(--cwh-color-primary);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(36, 83, 155, .16);
  padding: 1.6rem 1.75rem 1.4rem;
  margin: 1rem 0 1.75rem;
  overflow: hidden;
}

/* Filetto primario lungo il bordo superiore */
.cwh-ad__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cwh-color-primary), var(--cwh-color-accent));
}

.cwh-ad__header .cwh-ad__title {
  font-size: 1.85rem;
  color: var(--cwh-ink, #1c2b46);
}

.cwh-ad__header .cwh-ad__price {
  font-size: 2.25rem;
}

.cwh-ad__badges {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: .5rem;
}

.cwh-ad__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: .25rem 0;
  color: var(--cwh-color-text);
}

.cwh-ad__location {
  display: flex;
  align-items: flex-start;
  gap: .3rem;
  color: var(--cwh-color-muted);
  font-size: .9rem;
  margin: .3rem 0;
}

.cwh-ad__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin: .75rem 0 .25rem;
}

.cwh-ad__price {
  font-family: var(--cwh-font-display, Georgia, serif);
  font-size: 2rem;
  font-weight: 750;
  color: var(--cwh-ink, #1c2b46);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Icona riga dettaglio (campi personalizzati) */
.cwh-ad__feature-icon {
  color: var(--cwh-color-muted);
  margin-right: .5rem;
  flex-shrink: 0;
}

/* Badge "trattabile" nella sezione prezzo */
.cwh-ad__price-badge {
  font-size: .72rem;
  margin-left: .3rem;
}

.cwh-ad__price-unit {
  font-size: 1rem;
  color: var(--cwh-color-muted);
  font-weight: 400;
}

.cwh-ad__price-sqm {
  font-size: .88rem;
  color: var(--cwh-color-muted);
  background: var(--cwh-color-bg);
  border: 1px solid var(--cwh-color-border);
  padding: .15rem .55rem;
  border-radius: 4px;
}

.cwh-ad__updated {
  font-size: .78rem;
  color: var(--cwh-color-muted);
  margin-top: .4rem;
}

/* --- Quick-stats bar ------------------------------------------------------- */
.cwh-ad__quickstats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.75rem;
  padding: .85rem 0;
  border-top: 1px solid var(--cwh-color-border);
  border-bottom: 1px solid var(--cwh-color-border);
  margin: .75rem 0;
}

.cwh-ad__quickstat {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .88rem;
}

.cwh-ad__quickstat-value {
  font-weight: 600;
  color: var(--cwh-color-text);
}

.cwh-ad__quickstat-label {
  color: var(--cwh-color-muted);
}

/* --- Owner bar (azioni proprietario, compatta in alto) --------------------- */
.cwh-ad__ownerbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem .75rem;
  margin: 0 0 1rem;
  padding: .5rem .75rem;
  background: var(--cwh-color-bg);
  border: 1px solid var(--cwh-color-border);
  border-left: 3px solid var(--cwh-color-primary);
  border-radius: 8px;
}

.cwh-ad__ownerbar-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
}

.cwh-ad__ownerbar-label {
  font-weight: 600;
  color: var(--cwh-color-text);
}

.cwh-ad__ownerbar-expiry {
  color: var(--cwh-color-muted);
}

.cwh-ad__ownerbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
}

.cwh-ad__ownerbar-active {
  font-size: .8rem;
  font-weight: 600;
}

.cwh-ad__ownerbar-btn--featured {
  background: #faa05a;
  color: #fff;
}

.cwh-ad__ownerbar-btn--top {
  background: #f0506e;
  color: #fff;
}

.cwh-ad__ownerbar-btn--featured:hover,
.cwh-ad__ownerbar-btn--top:hover {
  color: #fff;
  filter: brightness(.95);
}

/* --- Actions bar ----------------------------------------------------------- */
.cwh-ad__actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: .5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--cwh-color-border);
}

.cwh-ad__action-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .83rem;
  padding: .3rem .7rem;
  border-radius: 4px;
  border: 1px solid var(--cwh-color-border);
  background: #fff;
  cursor: pointer;
  color: var(--cwh-color-text);
  text-decoration: none;
  transition: background .12s, border-color .12s;
  line-height: 1.4;
}

.cwh-ad__action-btn:hover,
.cwh-ad__action-btn:focus-visible {
  background: var(--cwh-color-bg);
  border-color: var(--cwh-color-muted);
  outline: 2px solid var(--cwh-color-primary);
  outline-offset: 1px;
}

.cwh-ad__share-feedback {
  font-size: .82rem;
  color: var(--cwh-chip-yes-text);
  align-self: center;
}

/* Pulsante "Condividi" prominente (in alto e in fondo) */
.cwh-ad__action-btn--share {
  background: var(--cwh-color-primary);
  border-color: var(--cwh-color-primary);
  color: #fff;
  font-weight: 600;
}

.cwh-ad__action-btn--share:hover,
.cwh-ad__action-btn--share:focus-visible {
  background: #00468a;
  border-color: #00468a;
  color: #fff;
}

/* --- MediaTabs (sotto la gallery) ------------------------------------------ */
.cwh-ad__mediatabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: -.25rem 0 1rem;
}

.cwh-ad__mediatab {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 600;
  padding: .5rem .9rem;
  border-radius: 6px;
  border: 1px solid var(--cwh-color-border);
  background: #fff;
  color: var(--cwh-color-text);
  cursor: pointer;
  transition: background .12s, border-color .12s;
}

.cwh-ad__mediatab:hover,
.cwh-ad__mediatab:focus-visible {
  background: var(--cwh-color-bg);
  border-color: var(--cwh-color-muted);
}

.cwh-ad__mediatab i {
  color: var(--cwh-color-primary);
}

/* --- Riferimento descrizione ----------------------------------------------- */
.cwh-ad__reference {
  font-size: .8rem;
  color: var(--cwh-color-muted);
  margin: 0 0 .5rem;
  letter-spacing: .02em;
}

/* --- Features grid --------------------------------------------------------- */
.cwh-ad__features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5rem;
}

@media (max-width: 479px) {
  .cwh-ad__features-grid { grid-template-columns: 1fr; }
}

.cwh-ad__feature-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--cwh-color-border);
  font-size: .88rem;
  min-width: 0;
}

.cwh-ad__feature-label {
  color: var(--cwh-color-muted);
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 0;
  flex: 1;
}

.cwh-ad__feature-value {
  font-weight: 600;
  color: var(--cwh-color-text);
  text-align: right;
  flex-shrink: 0;
  max-width: 55%;
}

/* --- Chips ----------------------------------------------------------------- */
.cwh-ad__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.cwh-ad__chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .7rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 500;
  white-space: nowrap;
}

.cwh-ad__chip--present {
  background: var(--cwh-chip-yes-bg);
  color: var(--cwh-chip-yes-text);
}

.cwh-ad__chip--absent {
  background: var(--cwh-chip-no-bg);
  color: var(--cwh-chip-no-text);
  text-decoration: line-through;
}

.cwh-ad__chips-more {
  display: none;
  flex-wrap: wrap;
  gap: .5rem;
}

.cwh-ad__chips-more--open {
  display: flex;
  margin-top: .5rem;
}

.cwh-ad__chips-toggle {
  font-size: .82rem;
  cursor: pointer;
  color: var(--cwh-color-primary);
  background: none;
  border: none;
  padding: .3rem 0;
  text-decoration: underline;
}

.cwh-ad__chips-toggle:focus-visible {
  outline: 2px solid var(--cwh-color-primary);
  outline-offset: 2px;
}

/* --- Community — "La community di questo spazio" --------------------------
   Contenuto di prima classe: le persone non sono una dotazione, quindi NON
   usano i chip di .cwh-ad__chip. "Come si lavora qui" è il protagonista. */
.cwh-community__title {
  color: var(--cwh-color-primary);
}

/* Riga persone: stile condiviso con la card (vedi frontend.css .cwh-people),
   qui in variante distesa. */
.cwh-community .cwh-people {
  margin-bottom: 1.1rem;
}

.cwh-community .cwh-people__count {
  width: 40px;
  height: 40px;
  font-size: 15px;
}

.cwh-community .cwh-people__headline {
  font-size: .95rem;
}

/* Come si lavora qui — testo lungo, protagonista del blocco */
.cwh-community__how {
  margin-bottom: 1rem;
}

.cwh-community__label {
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--cwh-color-muted);
}

.cwh-community__how-text {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--cwh-color-text);
}

/* Atmosfera — riga discreta in linea, mai pill */
.cwh-community__atmosphere {
  margin: 0 0 1.1rem;
  font-size: .88rem;
  line-height: 1.5;
  color: var(--cwh-color-muted);
}

.cwh-community__atmosphere-label {
  font-weight: 700;
}

/* Chi cerchiamo — riquadro verde, l'invito ad agire del blocco */
.cwh-community__seeking {
  padding: .85rem 1rem 1rem;
  border-radius: 10px;
  background: var(--cwh-success-soft, #ecf6f0);
  border: 1px solid var(--cwh-success, #2e7d4f);
}

.cwh-community__seeking-label {
  margin: 0 0 .5rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--cwh-success, #2e7d4f);
}

.cwh-community__seats {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin: 0 0 .5rem;
}

.cwh-community__seats-n {
  font-family: var(--cwh-font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cwh-success, #2e7d4f);
}

.cwh-community__seats-text {
  font-size: .92rem;
  font-weight: 600;
  color: var(--cwh-color-text);
}

.cwh-community__seeking-text {
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--cwh-color-text);
}

.cwh-community__sectors {
  font-weight: 700;
  color: var(--cwh-color-text);
}


/* --- Description ----------------------------------------------------------- */
.cwh-ad__description-text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--cwh-color-text);
  overflow: hidden;
}

.cwh-ad__description-text--truncated {
  max-height: 7em;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.cwh-ad__read-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--cwh-color-primary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
}

.cwh-ad__read-more:focus-visible {
  outline: 2px solid var(--cwh-color-primary);
  outline-offset: 2px;
}

/* --- Price section --------------------------------------------------------- */
.cwh-ad__price-section-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px solid var(--cwh-color-border);
  font-size: .9rem;
  gap: .5rem;
}

.cwh-ad__price-section-row--main {
  font-size: 1.05rem;
}

.cwh-ad__price-section-label {
  color: var(--cwh-color-muted);
}

.cwh-ad__price-section-value {
  font-weight: 600;
  color: var(--cwh-color-text);
  text-align: right;
}

/* --- Sectors --------------------------------------------------------------- */
.cwh-ad__sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .5rem;
}

.cwh-ad__sector-tag {
  background: #e3f0ff;
  color: #0055a4;
  border-radius: 4px;
  padding: .2rem .6rem;
  font-size: .82rem;
  font-weight: 500;
}

/* --- Sezione coworker valorizzata (box accent) ----------------------------- */
.cwh-ad__coworker {
  border-left: 4px solid var(--cwh-color-primary);
  background: #f4f8fd;
}

.cwh-ad__coworker .uk-card-title {
  color: var(--cwh-color-primary);
}

/* Tag settori più grandi e leggibili dentro la sezione coworker */
.cwh-ad__coworker .cwh-ad__sector-tags {
  gap: .5rem;
}

.cwh-ad__coworker .cwh-ad__sector-tag {
  font-size: .95rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: 6px;
  background: #d9e9fb;
}

/* --- Map ------------------------------------------------------------------- */
#cwh-leaflet-map {
  height: 280px;
  border-radius: 8px;
  border: 1px solid var(--cwh-color-border);
}

.cwh-ad__map-address {
  font-size: .8rem;
  color: var(--cwh-color-muted);
  margin-top: .35rem;
}

/* --- Related listings ------------------------------------------------------ */
.cwh-ad__related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 767px) {
  .cwh-ad__related-grid { grid-template-columns: 1fr; }
}

.cwh-ad__related-card {
  border: 1px solid var(--cwh-color-border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow .15s;
}

.cwh-ad__related-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  text-decoration: none;
  color: inherit;
}

.cwh-ad__related-thumb {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  background: var(--cwh-color-bg);
}

.cwh-ad__related-thumb-placeholder {
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cwh-color-bg);
  color: var(--cwh-color-border);
}

.cwh-ad__related-body {
  padding: .6rem .75rem .75rem;
}

.cwh-ad__related-title {
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cwh-color-text);
  margin: 0 0 .2rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.cwh-ad__related-city {
  font-size: .78rem;
  color: var(--cwh-color-muted);
}

.cwh-ad__related-price {
  font-size: .88rem;
  font-weight: 700;
  color: var(--cwh-color-primary);
  margin-top: .3rem;
}

/* --- Stats (owner PRO) ----------------------------------------------------- */
.cwh-ad__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

@media (max-width: 639px) {
  .cwh-ad__stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.cwh-ad__stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cwh-color-primary);
  line-height: 1;
}

.cwh-ad__stat-label {
  font-size: .78rem;
  color: var(--cwh-color-muted);
  margin-top: .25rem;
}

/* --- Sidebar --------------------------------------------------------------- */
.cwh-ad__sidebar-inner {
  position: sticky;
  top: 120px;
}

/* Card inserzionista: compatta, avatar a sinistra + nome di fianco */
.cwh-ad__advertiser-card.uk-card-body {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .7rem;
  text-align: left;
}

.cwh-ad__advertiser-avatar,
.cwh-ad__advertiser-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 auto;
  margin: 0;
}

.cwh-ad__advertiser-avatar {
  object-fit: cover;
  display: block;
}

.cwh-ad__advertiser-avatar-placeholder {
  background: var(--cwh-color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cwh-color-muted);
}

.cwh-ad__advertiser-name {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--cwh-color-text);
  min-width: 0;
  overflow-wrap: anywhere;
}

/* --- Helper consolidati (ex stili inline) ---------------------------------- */
.cwh-ad__ico {
  margin-right: .4rem;        /* solo spaziatura: il colore si eredita */
}

.cwh-ad__ico--muted {
  color: var(--cwh-color-muted);
}

.cwh-ad__meta {
  font-size: .82rem;
  color: var(--cwh-color-muted);
  margin: .25rem 0;
}

.cwh-ad__meta--xs {
  font-size: .78rem;
}

.cwh-ad__bio {
  font-size: .85rem;
  margin-top: .6rem;
  color: var(--cwh-color-text);
  line-height: 1.5;
}

.cwh-ad__pro-badge {
  display: inline-block;
  margin: .3rem 0;
}

.cwh-ad__owner-note {
  font-size: .85rem;
  margin: .5rem 0 0;
}

.cwh-ad__phone-link {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.cwh-ad__privacy {
  display: flex;
  align-items: center;
  gap: .4rem;
  cursor: pointer;
  font-size: .8rem;
}

.cwh-ad__honeypot {
  display: none !important;
}

/* Header */
.cwh-ad__price-note {
  font-size: .85rem;
}

/* Coworker */
.cwh-ad__badge-row {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
}

.cwh-ad__coworker-notes {
  margin-top: .75rem;
  font-size: .9rem;
}

.cwh-ad__sectors-label {
  font-size: .85rem;
  color: var(--cwh-color-muted);
  margin-bottom: .3rem;
}

/* Coworker — struttura a due parti */
.cwh-ad__coworker-part {
  padding-top: .9rem;
  margin-top: .9rem;
  border-top: 1px solid var(--cwh-color-border);
}

.cwh-ad__coworker-part:first-of-type {
  padding-top: .25rem;
  margin-top: .25rem;
  border-top: 0;
}

.cwh-ad__coworker-subtitle {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 .6rem;
  color: var(--cwh-color-primary);
}

.cwh-ad__coworking-desc-label {
  font-weight: 600;
  font-size: .85rem;
  margin: .5rem 0 .2rem;
}

.cwh-ad__coworking-desc {
  font-size: .9rem;
  line-height: 1.55;
  margin: 0;
}

.cwh-ad__sector-required {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: #b8730b;
  background: #fff6e5;
  border: 1px solid #f5c97a;
  border-radius: 6px;
  padding: .35rem .6rem;
  margin-bottom: .45rem;
}

/* --- Gallery --------------------------------------------------------------- */
.cwh-ad__slide {
  cursor: zoom-in;
}

/* Frecce sempre visibili (non più solo all'hover) */
.cwh-ad__gallery-nav {
  background: rgba(255, 255, 255, .9);
  color: #111;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.cwh-ad__gallery-counter {
  background: rgba(0, 0, 0, .6);
  padding: .2rem .5rem;
  font-size: .8rem;
  min-width: 2.5rem;
  text-align: center;
}

.cwh-ad__thumbnav {
  overflow-x: auto;
  flex-wrap: nowrap;
  gap: 5px;
  padding: 2px 0 6px;
}

/* UIkit applica padding-left:15px ai figli del thumbnav: lo annulliamo (usiamo gap) */
.cwh-ad__thumbnav > * {
  padding-left: 0;
}

.cwh-ad__thumbnav img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

.cwh-ad__thumbnav-more {
  display: flex;
  align-items: center;
  padding: 0 8px;
  font-size: .8rem;
  color: var(--cwh-color-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- CTA contatto sticky (solo mobile/tablet) ------------------------------ */
.cwh-ad__mobile-cta {
  display: none;
}

@media (max-width: 1199px) {
  .cwh-ad__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 980;
    background: #fff;
    border-top: 1px solid var(--cwh-color-border);
    padding: .55rem 1rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
  }

  .cwh-ad__mobile-cta-price {
    font-weight: 700;
    color: var(--cwh-color-primary);
    line-height: 1.1;
  }

  .cwh-ad__mobile-cta-price small {
    font-weight: 400;
    color: var(--cwh-color-muted);
    font-size: .8rem;
  }

  .cwh-ad__mobile-cta .uk-button {
    flex-shrink: 0;
  }

  /* spazio per non far coprire l'ultimo contenuto dalla barra fissa */
  .cwh-ad-main-col {
    padding-bottom: 70px;
  }
}

/* =============================================================
   Print
   ============================================================= */
@media print {
  .cwh-ad-sidebar-col,
  .cwh-ad__actions,
  .cwh-ad__mobile-cta,
  nav, .uk-navbar, footer {
    display: none !important;
  }

  .cwh-ad-main-col {
    width: 100% !important;
    max-width: 100% !important;
  }

  .cwh-ad__description-text--truncated {
    max-height: none !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  #cwh-leaflet-map { display: none !important; }

  a[href]::after { content: none !important; }
}
