/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 19 2025 | 08:43:10 */
/* ================================
   BELMONDO INTERACTIVE ROW COMPONENT
   ================================ */

/* Main container */
.belmondo-component {
  display: flex;
  width: 100%;
  font-family: sans-serif;
}

/* Left column */
.belmondo-component .left-column {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.belmondo-component .left-column img {
  max-width: 100%;
  height: auto;
  max-height: 350px;
}

/* Right column */
.belmondo-component .right-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

/* Clickable rows */
.belmondo-component .row {
  padding: 16px;
  margin: 5px 0;
  cursor: pointer;
  border-radius: 28px;
  border: 1px solid #e1e4e8;
  background: #ffffff;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

/* Hover + active state */
.belmondo-component .row:hover,
.belmondo-component .row.active {
  border: 1px solid #6fbfd1;
  box-shadow: 0px 0px 1px 0px rgba(10, 22, 70, 0.06),
    0px 3px 3px -1px rgba(10, 22, 70, 0.1);
}

/* Title wrapper: icon + title */
.belmondo-component .title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Icon image */
.belmondo-component .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Row title */
.belmondo-component .row h3 {
  font-size: 18px;
  margin: 0;
}

/* Description text */
.belmondo-component .info {
  display: none;
  margin-top: 8px;
  color: #929292;
  font-weight: 300;
  font-size: 16px;
  padding-left: 48px; /* align with icon and title */
}

/* Show info only for active row */
.belmondo-component .row.active .info {
  display: block;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 768px) {
  .belmondo-component {
    flex-direction: column;
  }

  .belmondo-component .left-column,
  .belmondo-component .right-column {
    width: 100%;
  }

  .belmondo-component .right-column {
    padding: 32px 10px 10px;
  }
}