.elementor-widget-image .widget-image-caption{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}/* Start custom CSS for html, class: .elementor-element-d8b8f75 */.company-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  padding: 10px 0;
  font-family: sans-serif;
}

.cc-logo-col {
  flex: 0 0 100px; /* Breite des Logos */
  text-align: center;
}

.cc-logo {
  max-width: 100%;
  height: auto;
  display: block;
}

.cc-info-col {
  flex: 1;
}



.cc-address-block {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cc-line {
  display: flex;
  align-items: center;
  gap: 12px;
  

}

.cc-icon {
  color: #0073aa; /* Farbe der Icons - passend zu WordPress/deiner Brand */
  width: 16px;
  text-align: center;
}

.cc-line a {
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cc-line a:hover {
  color: #0073aa;
  text-decoration: underline;
}

/* Mobile Optimierung: Untereinander auf Smartphones */
@media (max-width: 480px) {
  .company-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .cc-logo-col {
    flex: none;
    max-width: 120px;
  }
}/* End custom CSS */