<!-- ═══════════════════════════════════
     MODULE.CSS  —  paste into CSS tab
     ═══════════════════════════════════ -->
<style>
.ondaro-locations *,
.ondaro-locations *::before,
.ondaro-locations *::after { box-sizing: border-box; margin: 0; padding: 0; }

.ondaro-locations { padding: 60px 0; font-family: inherit; }

.ol-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: #1D9E75; margin-bottom: 8px;
}
.ol-headline {
  font-size: 32px; font-weight: 600; color: #1a1a1a;
  margin-bottom: 10px; line-height: 1.2;
}
.ol-subtext {
  font-size: 15px; color: #555; line-height: 1.6;
  margin-bottom: 32px; max-width: 600px;
}

.ol-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Left panel */
.ol-left-panel {
  position: sticky; top: 80px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid #e0e0e0;
  background: #f4f4f2;
}
.ol-panel-view { display: none; }
.ol-panel-view.is-active { display: block; }

/* Map */
.ol-map-wrap { position: relative; width: 100%; line-height: 0; }
.ol-map-img { width: 100%; height: auto; display: block; }
.ol-pin-layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.ol-pin { cursor: pointer; transition: opacity 0.15s; }
.ol-pin:hover { opacity: 0.75; }
.ol-pin:focus { outline: 2px solid #1D9E75; outline-offset: 3px; }

/* Photo */
.ol-photo-view { position: relative; }
.ol-photo-img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.ol-photo-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
}
.ol-photo-city { font-size: 20px; font-weight: 600; color: #fff; line-height: 1.2; }
.ol-photo-country { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 3px; }
.ol-back-btn {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35);
  color: #fff; font-size: 12px; font-weight: 500;
  padding: 5px 13px; border-radius: 20px; cursor: pointer;
  font-family: inherit; transition: background 0.15s;
}
.ol-back-btn:hover { background: rgba(255,255,255,0.3); }

/* Cards */
.ol-cards-panel { display: flex; flex-direction: column; gap: 10px; }
.ol-cards-hint { font-size: 11px; color: #999; text-align: center; padding: 4px 0 6px; }

.ol-card {
  background: #fff; border: 1px solid #e5e5e5;
  border-radius: 14px; padding: 14px 16px;
  cursor: pointer; transition: border-color 0.15s;
  display: flex; gap: 14px; align-items: flex-start;
}
.ol-card:hover { border-color: #bbb; }
.ol-card.is-active { border: 2px solid #1D9E75; }
.ol-card:focus { outline: 2px solid #1D9E75; outline-offset: 2px; }

.ol-card-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px;
  background: #f0f0ee; color: #888;
}
.ol-card-icon--hq { background: #E1F5EE; color: #0F6E56; }
.ol-card-body { flex: 1; min-width: 0; }

.ol-badge {
  display: inline-block; font-size: 10px; font-weight: 600;
  background: #E1F5EE; color: #0F6E56;
  padding: 2px 8px; border-radius: 20px;
  margin-bottom: 4px; letter-spacing: 0.02em;
}
.ol-card-name { font-size: 15px; font-weight: 600; color: #1a1a1a; line-height: 1.2; }
.ol-card-role { font-size: 12px; color: #888; margin-top: 2px; }

.ol-card-detail { display: none; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f0f0f0; }
.ol-card.is-active .ol-card-detail { display: block; }

.ol-detail-row { display: flex; gap: 8px; margin-top: 5px; }
.ol-detail-label { font-size: 11px; color: #bbb; min-width: 52px; flex-shrink: 0; padding-top: 1px; }
.ol-detail-val { font-size: 12px; color: #555; line-height: 1.5; }
.ol-detail-val a { color: #1D9E75; text-decoration: none; }
.ol-detail-val a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .ol-layout { grid-template-columns: 1fr; }
  .ol-left-panel { position: static; }
  .ol-headline { font-size: 24px; }
}
</style>