/* css/style.css - 모바일 특화 아기 이유식 식단표 & 큐브 달력 스타일 */

:root {
  --primary: #FF7E67;
  --primary-light: #FFF0ED;
  --primary-dark: #E25B42;
  --secondary: #4A90E2;
  --secondary-light: #EBF3FC;
  --accent-green: #38B2AC;
  --accent-green-light: #E6FFFA;
  --accent-yellow: #ECC94B;
  --accent-yellow-light: #FEFCBF;
  --accent-purple: #9F7AEA;
  --accent-purple-light: #FAF5FF;
  
  --bg-color: #F8FAFC;
  --card-bg: #FFFFFF;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --border-color: #E2E8F0;
  
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Pretendard", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.5;
  padding-bottom: calc(76px + env(safe-area-inset-bottom, 16px));
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
}

/* Header */
.app-header {
  background: var(--card-bg);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
  font-size: 24px;
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
}

.brand-sub {
  font-size: 11px;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 600;
}

.header-action-btn {
  background: none;
  border: none;
  font-size: 18px;
  padding: 6px;
  cursor: pointer;
  color: var(--text-muted);
}

/* Main Container */
.container {
  padding: 16px;
}

/* Tab Views */
.tab-view {
  display: none;
  animation: fadeIn 0.2s ease-in-out;
}

.tab-view.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-around;
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom, 8px));
  z-index: 200;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
  flex: 1;
}

.nav-item .nav-icon {
  font-size: 20px;
}

.nav-item.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-item.active .nav-icon {
  transform: scale(1.1);
  transition: transform 0.15s;
}

/* Stage Segment Tabs */
.stage-selector {
  display: flex;
  background: #EEF2F6;
  border-radius: var(--radius-md);
  padding: 4px;
  gap: 4px;
  margin-bottom: 16px;
}

.stage-btn {
  flex: 1;
  padding: 9px 4px;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.stage-btn.active {
  background: var(--card-bg);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Stage Banner */
.stage-banner {
  background: linear-gradient(135deg, #FFF5F2 0%, #FFF0EB 100%);
  border: 1px solid #FFE2DA;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #8C3A27;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stage-banner-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-dark);
}

/* Menu Day Card */
.day-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.day-card-header {
  padding: 12px 14px;
  background: #FAFBFD;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.day-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.day-badge {
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.day-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.copy-day-btn {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid #FFD5CC;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: all 0.15s;
}

.copy-day-btn:active {
  background: var(--primary);
  color: white;
  transform: scale(0.97);
}

.day-meals-container {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.meal-block {
  background: #F8FAFC;
  border: 1px dashed #CBD5E1;
  border-radius: var(--radius-sm);
  padding: 10px;
}

.meal-block-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.meal-num-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
  background: var(--secondary-light);
  padding: 2px 7px;
  border-radius: 6px;
}

.copy-meal-btn {
  background: none;
  border: none;
  font-size: 11px;
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
}

.meal-items-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.food-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: white;
  border: 1px solid var(--border-color);
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-main);
}

.food-chip.is-new {
  border-color: #FFB4A4;
  background: #FFF8F6;
}

.chip-new-tag {
  background: #EF4444;
  color: white;
  font-size: 9px;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 4px;
}

.chip-amount {
  font-size: 11px;
  color: var(--text-muted);
}

/* Category Badge Colors */
.cat-곡류 { border-left: 3px solid #EAB308; }
.cat-육류 { border-left: 3px solid #EF4444; }
.cat-채소류 { border-left: 3px solid #10B981; }
.cat-과일류 { border-left: 3px solid #F97316; }
.cat-생선_해산물 { border-left: 3px solid #06B6D4; }
.cat-달걀_콩_견과_유제품 { border-left: 3px solid #8B5CF6; }

/* Today Meal View */
.date-navigator {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.nav-arrow-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 6px 10px;
  color: var(--text-muted);
  border-radius: 6px;
}

.nav-arrow-btn:active {
  background: #F1F5F9;
}

.current-date-text {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.today-label {
  font-size: 11px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: 10px;
}

.meal-slot-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.meal-slot-header {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #F1F5F9;
}

.meal-slot-title {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meal-cubes-list {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cube-row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
}

.cube-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cube-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.cube-cat-tag {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  background: #E2E8F0;
  color: #475569;
}

.cube-counter {
  display: flex;
  align-items: center;
  gap: 6px;
}

.count-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid #CBD5E1;
  background: white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-main);
  transition: all 0.1s;
}

.count-btn:active {
  background: #E2E8F0;
  transform: scale(0.94);
}

.count-val {
  min-width: 20px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}

.delete-cube-btn {
  background: none;
  border: none;
  color: #94A3B8;
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
  margin-left: 4px;
}

.delete-cube-btn:active {
  color: var(--danger);
}

.add-cube-btn {
  width: 100%;
  padding: 9px;
  background: white;
  border: 1px dashed #CBD5E1;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}

.add-cube-btn:active {
  background: #F8FAFC;
}

/* Action Banner in Today Meal */
.sync-inventory-banner {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 12px;
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sync-text {
  font-size: 12px;
  color: #1E40AF;
  font-weight: 500;
}

.sync-btn {
  background: var(--secondary);
  color: white;
  border: none;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* Calendar View */
.calendar-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cal-month-title {
  font-size: 16px;
  font-weight: 700;
}

.cal-nav-btn {
  background: none;
  border: none;
  font-size: 15px;
  padding: 6px 10px;
  cursor: pointer;
  color: var(--text-muted);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.cal-day-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  padding-bottom: 6px;
}

.cal-day-name:first-child { color: var(--danger); }
.cal-day-name:last-child { color: var(--secondary); }

.cal-cell {
  min-height: 52px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 2px;
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease;
  background: #FFFFFF;
}

.cal-cell:active {
  background: #F1F5F9;
  transform: scale(0.96);
}

.cal-cell.other-month {
  opacity: 0.22;
}

.cal-cell.today {
  border: 1.5px solid var(--primary);
}

.cal-cell.selected {
  background: var(--primary) !important;
  color: white !important;
  box-shadow: 0 4px 10px rgba(255, 126, 103, 0.35);
}

.cal-cell.selected .cal-cell-num {
  color: white !important;
  font-weight: 800;
}

.cal-cell.selected .cube-dot {
  background: white !important;
}

.cal-cell-num {
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.cal-cube-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  justify-content: center;
  margin-top: 4px;
  max-width: 100%;
}

.cube-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.cube-dot.expired {
  background: #94A3B8;
}

/* Quick Add Cube & New Cube Section */
.quick-add-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.highlight-date-badge {
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
}

.section-desc {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.cube-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.full-width {
  width: 100% !important;
}

.input-text, .select-box {
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: #FFFFFF;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}

.input-text:focus, .select-box:focus {
  border-color: var(--primary);
}

.select-box {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748B'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

/* Stepper & Submit Button Row */
.form-row-stepper {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.stepper-box {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  height: 44px;
  overflow: hidden;
}

.stepper-btn {
  width: 40px;
  height: 100%;
  border: none;
  background: #F8FAFC;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.1s;
}

.stepper-btn:active {
  background: #E2E8F0;
}

.stepper-input {
  width: 44px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  outline: none;
  -moz-appearance: textfield;
}

.stepper-input::-webkit-outer-spin-button,
.stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.primary-btn.submit-btn {
  flex: 1;
  height: 44px;
  background: linear-gradient(135deg, #FF7E67 0%, #FF6042 100%);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(255, 126, 103, 0.25);
  transition: all 0.15s;
}

.primary-btn.submit-btn:active {
  transform: scale(0.98);
  opacity: 0.95;
}

/* Two-column grid for new cube */
.form-grid-two {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
}

.outline-primary-btn {
  height: 44px;
  background: #FFFFFF;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s;
}

.outline-primary-btn:active {
  background: var(--primary-light);
  transform: scale(0.98);
}

/* Inventory List */
.inventory-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.inventory-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #F1F5F9;
}

.inventory-item:last-child {
  border-bottom: none;
}

.inv-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inv-name {
  font-size: 14px;
  font-weight: 700;
}

.inv-date-info {
  font-size: 11px;
  color: var(--text-muted);
}

.inv-status-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dday-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
}

.dday-safe {
  background: var(--accent-green-light);
  color: #0D9488;
}

.dday-warn {
  background: var(--warning-light);
  color: #D97706;
}

.dday-expired {
  background: var(--danger-light);
  color: var(--danger);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  justify-content: center;
  align-items: flex-end;
}

.modal-overlay.active {
  display: flex;
}

.modal-sheet {
  background: white;
  width: 100%;
  max-width: 480px;
  border-radius: 20px 20px 0 0;
  padding: 20px 18px calc(24px + env(safe-area-inset-bottom, 16px));
  max-height: 85vh;
  overflow-y: auto;
  animation: slideUp 0.25s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 16px;
  font-weight: 700;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
}

/* Toast */
.toast-msg {
  position: fixed;
  bottom: calc(80px + env(safe-area-inset-bottom, 16px));
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(30, 41, 59, 0.92);
  color: white;
  padding: 9px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-out;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.toast-msg.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Settings View */
.settings-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 16px;
  margin-bottom: 14px;
}

.settings-btn-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.outline-btn {
  background: white;
  border: 1px solid var(--border-color);
  padding: 11px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.outline-btn:active {
  background: #F8FAFC;
}

.danger-btn {
  color: var(--danger);
  border-color: #FECACA;
}

.danger-btn:active {
  background: var(--danger-light);
}

.empty-state {
  text-align: center;
  padding: 24px 10px;
  color: var(--text-light);
  font-size: 13px;
}

.empty-state-icon {
  font-size: 32px;
  margin-bottom: 6px;
}

/* PIN Lock Screen */
.pin-lock-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: opacity 0.25s ease;
}

.pin-lock-overlay.unlocked {
  display: none !important;
}

.pin-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px 24px 28px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  animation: zoomIn 0.2s ease-out;
}

@keyframes zoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.pin-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.pin-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.pin-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
}

.pin-input-wrap {
  display: flex;
  justify-content: center;
}

.pin-input {
  width: 220px;
  height: 48px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 700;
  outline: none;
  background: #F8FAFC;
  transition: all 0.15s;
}

.pin-input:focus {
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255, 126, 103, 0.2);
}

.pin-error-text {
  color: var(--danger);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  min-height: 18px;
}
