/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 17 2025 | 12:37:40 */
.contact-details {
  padding: 20px;
  font-family: inherit;
  color: #222;
  box-sizing: border-box;
}

.contact-details__row-box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact-details__box {
  flex: 1;
  background-color: #fafafa;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #eee;
  box-sizing: border-box;
}

.contact-details__title {
  font-size: 20px;
  font-weight: bold;
  margin: 20px 0 10px;
}

.contact-details__phone,
.contact-details__email,
.contact-details__address {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-details__phone svg,
.contact-details__email svg,
.contact-details__address svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

.contact-details__phone a,
.contact-details__email a,
.contact-details__address a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.contact-details__phone a:hover,
.contact-details__email a:hover,
.contact-details__address a:hover {
  color: #35B22A;
}

/* MOBILE: spoji oba u jedan blok, stacked */
@media (max-width: 768px) {
  .contact-details__row-box {
    flex-direction: column;
    gap: 0;
  }

  .contact-details__box {
    border: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
  }

  .contact-details__box:first-child {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
}
