.wp-block-propcomm-contact-info-block {
  background: transparent;
  width: 100%;
  /* Content gutter so the green box is inset (floating) on tablet/small screens.
     No effect on wide desktop where the box is already centred at its max-width. */
  padding-inline: var(--content-pad);
}

.cib__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 88px 48px 100px;
  text-align: center;
    background: #064824;
    border-radius: 4px;
}

/* ── Heading ── */
.cib__eyebrow {
  display: block;
  font-family: 'SeasonSans', system-ui, sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(220,230,211,.45);
  margin-bottom: 20px;
}

.cib__heading {
  font-family: 'ConcretteXL', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: #DCE6D3;
  margin: 0 0 52px;
}

/* ── Details row ── */
.cib__details {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(220,230,211,.12);
  border-bottom: 1px solid rgba(220,230,211,.12);
  margin-bottom: 48px;
}

.cib__detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 48px;
  flex: 1;
  border-right: 1px solid rgba(220,230,211,.12);
}

.cib__detail-item:last-child {
  border-right: none;
}

.cib__detail-label {
  font-family: 'SeasonSans', system-ui, sans-serif;
  font-size: .68rem; /* keeps the micro-label motif but stays above the 10px legibility floor */
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(220,230,211,.4);
  margin-bottom: 10px;
}

.cib__detail-value {
  font-family: 'SeasonSans', system-ui, sans-serif;
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  color: #DCE6D3;
  text-decoration: none;
  line-height: 1.5;
  transition: opacity .2s;
}

a.cib__detail-value:hover {
  opacity: .65;
}

/* ── Social + map row ── */
.cib__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

/* Social buttons centered underneath the "Hitta hit" link. */
.cib__social {
  order: 2;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.cib__map-link {
  order: 1;
}

.cib__social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(220,230,211,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
}

.cib__social-link:hover {
  border-color: #DCE6D3;
  background: rgba(220,230,211,.08);
}

.cib__social-link svg {
  width: 16px;
  height: 16px;
  stroke: #DCE6D3;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cib__map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'SeasonSans', system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #DCE6D3;
  text-decoration: none;
  border-bottom: 1px solid rgba(220,230,211,.3);
  padding-bottom: 3px;
  transition: border-color .2s, gap .2s;
}

.cib__map-link:hover {
  border-color: #DCE6D3;
  gap: 16px;
}

.cib__map-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cib__inner {
    padding: 64px 32px 80px;
  }

  .cib__details {
    flex-direction: column;
    border: none;
  }

  .cib__detail-item {
    border-right: none;
    border-bottom: 1px solid rgba(220,230,211,.12);
    padding: 24px 0;
  }

  .cib__detail-item:first-child {
    border-top: 1px solid rgba(220,230,211,.12);
  }
}

@media (max-width: 480px) {
  .cib__inner {
    padding: 48px 20px 64px;
  }
}

/* ── Scroll-in reveal (JS adds .is-in) ── */
.cib__eyebrow,
.cib__heading,
.cib__details,
.cib__bottom {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.16, 1, .3, 1),
              transform 0.8s cubic-bezier(.16, 1, .3, 1);
}

.wp-block-propcomm-contact-info-block.is-in .cib__eyebrow  { opacity: 1; transform: none; transition-delay: 0.05s; }
.wp-block-propcomm-contact-info-block.is-in .cib__heading  { opacity: 1; transform: none; transition-delay: 0.15s; }
.wp-block-propcomm-contact-info-block.is-in .cib__details  { opacity: 1; transform: none; transition-delay: 0.28s; }
.wp-block-propcomm-contact-info-block.is-in .cib__bottom   { opacity: 1; transform: none; transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .cib__eyebrow,
  .cib__heading,
  .cib__details,
  .cib__bottom {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
