/* ==========================================================================
   DDS Kalender – Matches Lovable design (Raleway, Lucide, same palette)
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700;800&display=swap');

.dds-kalender {
  font-family: 'Raleway', system-ui, sans-serif;
  color: #1F262E;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 80px;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
/* Inherit container width from parent Elementor section */
.elementor-widget-container .dds-kalender {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* ── Header ───────────────────────────────────────────────────────────── */
.dds-kal-header { text-align: center; margin-bottom: 56px; }
.dds-kal-label {
  font-size: 14px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: #8896A4; margin: 0 0 12px;
}
.dds-kal-header h2 {
  font-size: 48px; font-weight: 700; margin: 0 0 12px; line-height: 1.1;
}
.dds-kal-subtitle { font-size: 16px; color: #70808F; margin: 0; }

/* ── Month Group ──────────────────────────────────────────────────────── */
.dds-kal-month-group { margin-bottom: 48px; }
.dds-kal-month-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 700; color: #1F262E;
  margin: 0 0 20px; padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}
.dds-kal-month-title svg { width: 22px; height: 22px; color: #1173D4; }

.dds-kal-section-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 700; color: #1F262E;
  margin: 0 0 20px;
}
.dds-kal-section-title svg { width: 20px; height: 20px; color: #1173D4; }

/* ── Grid ─────────────────────────────────────────────────────────────── */
.dds-kal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 20px;
}

/* ── Card ─────────────────────────────────────────────────────────────── */
.dds-kal-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(218,224,231,0.2);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
/* Card body = everything except image */
.dds-kal-card-body {
  padding: 20px 24px 24px;
}
.dds-kal-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

/* Card Image */
.dds-kal-card-img {
  width: 100%; height: 160px; overflow: hidden;
}
.dds-kal-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.3s ease;
}
.dds-kal-card:hover .dds-kal-card-img img { transform: scale(1.05); }

/* Card Header */
.dds-kal-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 12px;
}
.dds-kal-card-date {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #1173D4;
}
.dds-kal-card-date svg { width: 16px; height: 16px; }

.dds-kal-card-badges { display: flex; gap: 6px; }
.dds-kal-badge {
  font-size: 11px; font-weight: 500; padding: 3px 8px;
  border-radius: 9999px; border: 2px solid;
}
.dds-kal-badge.level-1 { color: #6CB9E0; border-color: rgba(108,185,224,0.3); background: rgba(108,185,224,0.1); }
.dds-kal-badge.level-2 { color: #E2B736; border-color: rgba(226,183,54,0.3); background: rgba(226,183,54,0.1); }
.dds-kal-badge.level-3 { color: #E06C6C; border-color: rgba(224,108,108,0.3); background: rgba(224,108,108,0.1); }

/* Title */
.dds-kal-card-title {
  font-size: 20px; font-weight: 700; margin: 4px 0 12px; line-height: 1.3;
}
.dds-kal-card-title a {
  color: #1F262E !important; text-decoration: none !important;
}
.dds-kal-card-title a:hover { color: #1173D4 !important; }

/* Meta */
.dds-kal-card-meta {
  display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 12px;
}
.dds-kal-meta-item {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; color: #70808F;
}
.dds-kal-meta-item svg { width: 14px; height: 14px; color: #94a3b8; }

/* Category */
.dds-kal-category {
  display: inline-block; font-size: 11px; font-weight: 500;
  color: #70808F; background: #f1f5f9; padding: 3px 10px;
  border-radius: 4px; margin-bottom: 16px;
}

/* Actions */
.dds-kal-card-actions {
  display: flex; gap: 12px; align-items: center;
  padding-top: 16px; border-top: 1px solid rgba(218,224,231,0.3);
}
.dds-kal-btn-info {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600; color: #1F262E !important;
  text-decoration: none !important; padding: 10px 22px;
  border: 1px solid #1F262E; border-radius: 8px;
  background: transparent;
  transition: all 0.2s;
}
.dds-kal-btn-info:hover { background: #1F262E; color: #fff !important; }
.dds-kal-btn-info:visited { color: #1F262E !important; }

.dds-kal-btn-signup {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #fff !important;
  background: #6CB9E0; padding: 10px 24px; border-radius: 8px;
  border: none;
  text-decoration: none !important; transition: all 0.2s;
}
.dds-kal-btn-signup:hover { background: #5AA8CF; color: #fff !important; }
.dds-kal-btn-signup:visited { color: #fff !important; }
.dds-kal-btn-signup svg { width: 16px; height: 16px; }

.dds-kal-empty { color: #94a3b8; font-style: italic; }

/* ═══════════════════════════════════════════════════════════════════════
   TOGGLE BUTTONS
   ═══════════════════════════════════════════════════════════════════════ */
.dds-kal-toggle {
  display: flex; gap: 4px; justify-content: center; margin-top: 24px;
  background: #f1f5f9; border-radius: 8px; padding: 4px; display: inline-flex;
}
.dds-kal-header .dds-kal-toggle { margin-left: auto; margin-right: auto; }
.dds-kal-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border: none; border-radius: 6px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: #70808F; background: transparent; cursor: pointer;
  transition: all 0.2s;
}
.dds-kal-toggle-btn svg { width: 16px; height: 16px; }
.dds-kal-toggle-btn.active {
  background: #6CB9E0 !important; color: #fff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.dds-kal-toggle-btn:hover:not(.active) { color: #1F262E; background: rgba(108,185,224,0.1); }
.dds-kal-toggle-btn:focus { outline: none; }

/* ═══════════════════════════════════════════════════════════════════════
   MONTH GRID VIEW
   ═══════════════════════════════════════════════════════════════════════ */

/* Navigation */
.dds-mg-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 24px;
}
.dds-mg-nav-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px; background: #fff; cursor: pointer;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: #1F262E;
  transition: all 0.2s;
}
.dds-mg-nav-btn:hover { background: #f8fafc; border-color: #1173D4; color: #1173D4; }
.dds-mg-nav-btn svg { width: 18px; height: 18px; }
.dds-mg-nav-btn .dds-mg-nav-label { pointer-events: none; }
.dds-mg-nav-title {
  font-size: 24px; font-weight: 700; color: #1F262E;
  margin: 0; min-width: 220px; text-align: center;
}

/* Container */
.dds-mg-container {
  border: 1px solid #e2e8f0; border-radius: 10px; overflow: visible;
  background: #fff;
  position: relative;
}
.dds-mg-days {
  overflow: visible !important;
}

/* Weekday headers */
.dds-mg-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  background: #f8fafc; border-bottom: 1px solid #e2e8f0;
}
.dds-mg-weekday {
  text-align: center; font-size: 11px; font-weight: 700;
  color: #8896A4; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 10px 0;
}

/* Week row — uses subgrid-like approach: 7 cols, N rows (auto for days + 46px per event slot) */
.dds-mg-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  /* grid-template-rows set inline based on number of events */
  border-bottom: 1px solid #f1f5f9;
  gap: 0 0;
  position: relative;
  overflow: visible;
}
.dds-mg-week:last-child { border-bottom: none; }

/* Day cell — only occupies row 1 */
.dds-mg-day {
  padding: 6px 8px 4px;
  border-right: 1px solid #f1f5f9;
}
.dds-mg-day:last-child { border-right: none; }
.dds-mg-day.outside { background: #fafbfc; }
.dds-mg-day.outside .dds-mg-daynum { color: #cbd5e1; }
.dds-mg-day.today .dds-mg-daynum {
  background: #1173D4; color: #fff;
}
.dds-mg-daynum {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: #1F262E;
  width: 26px; height: 26px; border-radius: 50%;
}

/* ── Event bars (grid-positioned, no absolute) ─────────────────────── */
.dds-mg-event {
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: filter 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 42px;
  /* grid-column and grid-row set inline */
}
.dds-mg-event.ev-round { border-radius: 6px; margin: 0 4px; }
.dds-mg-event.ev-round-left { border-radius: 6px 0 0 6px; margin-left: 4px; }
.dds-mg-event.ev-round-right { border-radius: 0 6px 6px 0; margin-right: 4px; }

.dds-mg-event-title {
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.dds-mg-event-meta {
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}

/* Event colors — saturated and readable */
.dds-mg-event.ev-level-1 { background: #4A9FD4; }
.dds-mg-event.ev-level-2 { background: #D4A520; }
.dds-mg-event.ev-level-3 { background: #D45050; }
.dds-mg-event.ev-default { background: #6B8299; }

.dds-mg-event:hover {
  filter: brightness(1.12);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 10;
}

/* ── Hover Card Popup ────────────────────────────────────────────────── */
.dds-mg-event-wrap {
  position: relative;
}
.dds-mg-event-wrap .dds-mg-event {
  width: 100%; height: 100%;
}
.dds-mg-hover-card {
  display: none;
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 340px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-top: 8px;
  pointer-events: auto;
}
.dds-mg-event-wrap:hover .dds-mg-hover-card {
  display: block;
}
/* Keep card visible when hovering the card itself */
.dds-mg-hover-card:hover { display: block; }

.dds-mg-hover-img {
  width: 100%; height: 160px; overflow: hidden;
}
.dds-mg-hover-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.dds-mg-hover-body {
  padding: 16px 20px 20px;
}
.dds-mg-hover-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 8px;
}
.dds-mg-hover-title {
  font-size: 18px; font-weight: 700; color: #1F262E;
  margin: 0 0 10px; line-height: 1.3;
}
.dds-mg-hover-body .dds-kal-card-meta {
  padding: 0; margin: 0 0 12px;
}
.dds-mg-hover-body .dds-kal-card-actions {
  padding: 12px 0 0; margin: 0;
  border-top: 1px solid rgba(218,224,231,0.3);
}
/* Position card to the right if too close to left edge */
.dds-mg-event-wrap:first-child .dds-mg-hover-card,
.dds-mg-event-wrap[style*="grid-column: 1"] .dds-mg-hover-card {
  left: 0; transform: none;
}
/* Position card to the left if too close to right edge */
.dds-mg-event-wrap:last-child .dds-mg-hover-card,
.dds-mg-event-wrap[style*="grid-column: 6"] .dds-mg-hover-card,
.dds-mg-event-wrap[style*="grid-column: 7"] .dds-mg-hover-card {
  left: auto; right: 0; transform: none;
}
/* Last week row: show popup above */
.dds-mg-week:last-child .dds-mg-hover-card {
  top: auto; bottom: 100%;
  margin-top: 0; margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════
   YEAR GRID VIEW (12 mini-months)
   ═══════════════════════════════════════════════════════════════════════ */
.dds-kal-year-view { width: 100%; }
.dds-yg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
@media (max-width: 1100px) { .dds-yg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .dds-yg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .dds-yg-grid { grid-template-columns: 1fr; } }

.dds-yg-mini {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 12px 12px;
  font-family: 'Raleway', sans-serif;
  overflow: visible;
  position: relative;
}
.dds-yg-mini-days { position: relative; }
.dds-yg-mini-title {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #1F262E;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.dds-yg-mini-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.dds-yg-mini-wd {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: #8896A4;
  padding-bottom: 4px;
}
.dds-yg-mini-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dds-yg-mini-empty { min-height: 22px; }
.dds-yg-mini-day {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: #1F262E;
  min-height: 22px;
  border-radius: 4px;
  transition: all 0.15s;
  position: relative;
}
.dds-yg-mini-num { pointer-events: none; }
.dds-yg-mini-day.is-today {
  outline: 2px solid #1173D4;
  outline-offset: -1px;
  font-weight: 700;
}
.dds-yg-mini-day.has-event {
  color: #fff;
  font-weight: 600;
  cursor: help;
}
.dds-yg-mini-day.ev-level-1 { background: #4A9FD4; }
.dds-yg-mini-day.ev-level-2 { background: #D4A520; }
.dds-yg-mini-day.ev-level-3 { background: #D45050; }
.dds-yg-mini-day.ev-default { background: #6B8299; }
.dds-yg-mini-day.has-event:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px currentColor;
  z-index: 2;
}
/* Event days are rendered as <button> — reset browser styles */
button.dds-yg-mini-day {
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  outline: none;
}
button.dds-yg-mini-day:focus-visible {
  outline: 2px solid #1173D4;
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════
   MODAL + CAROUSEL (year view click)
   ═══════════════════════════════════════════════════════════════════════ */
.dds-yg-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
  font-family: 'Raleway', sans-serif;
}
.dds-yg-modal.is-open { opacity: 1; }
.dds-yg-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.dds-yg-modal-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(10px);
  transition: transform 0.2s ease;
}
.dds-yg-modal.is-open .dds-yg-modal-box { transform: translateY(0); }

/* Close button */
.dds-yg-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  color: #1F262E;
  transition: background 0.15s;
}
.dds-yg-modal-close:hover { background: #f1f5f9; }

/* Header */
.dds-yg-modal-header {
  padding: 20px 52px 8px 24px;
  border-bottom: 1px solid #e2e8f0;
}
.dds-yg-modal-label {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1F262E;
  margin: 0 0 4px 0;
  line-height: 1.3;
}
.dds-yg-modal-counter {
  font-size: 13px;
  color: #70808F;
  margin-bottom: 12px;
}

/* Carousel */
.dds-yg-modal-carousel {
  position: relative;
  overflow: hidden;
}
.dds-yg-modal-slides {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}
.dds-yg-modal-slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
}
.dds-yg-modal-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}
.dds-yg-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dds-yg-modal-body {
  padding: 20px 24px 24px;
  text-align: left;
}
.dds-yg-modal-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1173D4;
  margin-bottom: 8px;
}
.dds-yg-modal-title {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1F262E;
  margin: 0 0 10px 0;
  line-height: 1.25;
}
.dds-yg-modal-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.dds-yg-modal-meta {
  font-size: 14px;
  color: #70808F;
  margin-bottom: 18px;
  line-height: 1.5;
}
.dds-yg-modal-meta .dds-kal-meta-item { display: inline; }
.dds-yg-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Arrow buttons */
.dds-yg-modal-arrow {
  position: absolute;
  top: 100px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95) !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  color: #1F262E !important;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
  padding: 0;
  outline: none;
}
.dds-yg-modal-arrow:hover,
.dds-yg-modal-arrow:focus,
.dds-yg-modal-arrow:active {
  background: #fff !important;
  color: #1F262E !important;
  transform: translateY(-50%) scale(1.05);
  outline: none;
}
.dds-yg-modal-arrow:focus-visible {
  box-shadow: 0 0 0 3px rgba(17,115,212,0.35), 0 2px 8px rgba(0,0,0,0.15);
}
.dds-yg-modal-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}
.dds-yg-modal-arrow.prev { left: 12px; }
.dds-yg-modal-arrow.next { right: 12px; }

/* Dots */
.dds-yg-modal-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px 20px;
}
.dds-yg-modal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.15s;
}
.dds-yg-modal-dot.active {
  background: #1173D4;
  width: 24px;
  border-radius: 4px;
}
.dds-yg-modal-dot:hover:not(.active) { background: #94a3b8; }

@media (max-width: 560px) {
  .dds-yg-modal-box { max-width: none; }
  .dds-yg-modal-img { height: 160px; }
  .dds-yg-modal-arrow { top: 80px; }
  .dds-yg-modal-title { font-size: 18px; }
}

/* ── Single-page variant ──────────────────────────────────────────────── */
.dds-kalender-single { padding: 20px 0; }
.dds-kalender-single .dds-kal-list-view .dds-kal-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.dds-kalender-single .dds-kal-card-img {
  height: 200px;
}
@media (max-width: 900px) {
  .dds-kalender-single .dds-kal-list-view .dds-kal-grid {
    grid-template-columns: 1fr;
  }
  .dds-kalender-single .dds-kal-card-img {
    height: 180px;
  }
}
.dds-kal-single-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.dds-kal-single-header .dds-kal-section-title { margin: 0; }
.dds-kal-single-header .dds-kal-toggle { margin: 0; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .dds-kal-header h2 { font-size: 32px; }
  .dds-kal-grid { grid-template-columns: 1fr; }
  .dds-kal-card-header { flex-direction: column; gap: 8px; }
  .dds-kal-card-meta { flex-direction: column; gap: 8px; }
  .dds-kal-card-actions { flex-direction: column; }
  .dds-kal-btn-info, .dds-kal-btn-signup { text-align: center; justify-content: center; width: 100%; }
  .dds-mg-days { overflow-x: auto; min-width: 600px; }
  .dds-mg-container { overflow-x: auto; }
  .dds-mg-day { min-height: 70px; }
  .dds-mg-nav-title { font-size: 18px; min-width: 160px; }
}
