@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:    #f06292;
  --pink-d:  #e91e63;
  --pink-l:  #fce4ec;
  --pink-xl: #fef5f8;
  --pink-m:  #f48fb1;
  --orange:  #ff9800;
  --orange-l:#fff3e0;
  --green:   #4caf50;
  --green-l: #e8f5e9;
  --gray:    #9e9e9e;
  --gray-l:  #f5f5f5;
  --text:    #2d2d2d;
  --text-m:  #666;
  --text-l:  #aaa;
  --border:  #f0d8e0;
  --white:   #ffffff;
  --sb-w:    220px;
  --r:       14px;
  --rs:      8px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--pink-xl);
  color: var(--text);
  display: flex;
  min-height: 100vh;
  font-size: 14px;
}

/* ── SIDEBAR ─────────────────────────────────── */
.sidebar {
  width: var(--sb-w);
  flex-shrink: 0;
  background: var(--white);
  height: 100vh;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  border-right: 1.5px solid var(--pink-l);
  overflow: hidden;
}

.sb-brand {
  padding: 1.5rem 1.2rem 1rem;
  border-bottom: 1px solid var(--pink-l);
}
.sb-logo {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--pink-d);
  line-height: 1;
}
.logo-pen { width: 18px; height: 18px; }
.sb-tag { font-size: .75rem; color: var(--text-l); margin-top: .3rem; }

.sb-nav {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1rem .8rem;
  flex-shrink: 0;
}
.nb {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .9rem;
  border: none;
  background: transparent;
  border-radius: var(--r);
  font-family: inherit;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-m);
  cursor: pointer;
  transition: all .2s;
  text-align: left;
  width: 100%;
}
.nb:hover  { background: var(--pink-xl); color: var(--pink-d); }
.nb.active { background: var(--pink); color: white; font-weight: 700; }
.nb .ni    { width: 18px; height: 18px; flex-shrink: 0; }
.nb.active .ni { color: white; }

.sb-quick-area {
  padding: 0 .8rem;
  margin-top: auto;
  flex-shrink: 0;
}
.sb-qbtn {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1.5px dashed var(--pink-m);
  background: var(--pink-xl);
  border-radius: var(--r);
  padding: .85rem 1rem;
  cursor: pointer;
  transition: all .2s;
  text-align: left;
}
.sb-qbtn:hover { background: var(--pink-l); border-color: var(--pink); }
.sbq-top  { display: flex; align-items: center; gap: .4rem; }
.sbq-icon { font-size: 1rem; }
.sbq-title { font-size: .86rem; font-weight: 700; color: var(--pink-d); }
.sbq-sub  { font-size: .72rem; color: var(--text-l); margin-top: .3rem; }

.sb-art {
  padding: .5rem .5rem 0;
  flex-shrink: 0;
}
.sb-art svg { width: 100%; height: auto; }

/* ── CONTENT AREA ────────────────────────────── */
.content {
  flex: 1;
  min-height: 100vh;
  overflow-y: auto;
  padding: 2rem 2rem 3rem;
}

.page { display: none; }
.page.active { display: block; }

/* ── DASHBOARD HEADER ────────────────────────── */
.dash-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.greeting { font-size: 1.8rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.greeting-sub { font-size: .95rem; color: var(--text-m); margin-top: .25rem; }
.date-pill {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 2rem;
  padding: .45rem 1.1rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-m);
  white-space: nowrap;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

/* ── STATS 4 ─────────────────────────────────── */
.stats4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.rekap-s4 { grid-template-columns: repeat(4,1fr); max-width: 100%; }
.sc {
  background: var(--white);
  border-radius: var(--r);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(240,98,146,.06);
}
.sci {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sci-p { background: linear-gradient(135deg, var(--pink-m), var(--pink)); }
.sci svg { width: 22px; height: 22px; }
.sc-n { font-size: 1.55rem; font-weight: 700; color: var(--text); line-height: 1.1; }
.sc-l { font-size: .78rem; color: var(--text-m); font-weight: 500; margin-top: .1rem; }
.sc-u { font-size: .72rem; color: var(--text-l); }

/* ── DASHBOARD GRID ──────────────────────────── */
.dash-grid {
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 1.25rem;
  align-items: start;
}

/* Main journal column */
.col-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.col-title { font-size: 1.1rem; font-weight: 700; color: var(--pink-d); }
.col-sub   { font-size: .8rem; color: var(--text-l); margin-top: .1rem; }

/* ── TIMELINE ────────────────────────────────── */
.tl-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--text-l);
  font-size: .9rem;
}

.tl-entry {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: .85rem;
}

.tl-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: .2rem;
}
.tl-circ {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
  font-weight: 700;
  border: 2px solid transparent;
  z-index: 1;
}
.tl-c-done  { background: var(--pink);   color: white; border-color: var(--pink-m); }
.tl-c-proses{ background: var(--orange); color: white; border-color: #ffb74d; }
.tl-c-cepat { background: white; color: var(--gray); border: 2px dashed var(--gray); }
.tl-vline   { width: 2px; background: var(--pink-l); flex: 1; min-height: 20px; }

.tl-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
  padding: .3rem .6rem 0 .6rem;
  flex-shrink: 0;
}
.tt-s { font-size: .82rem; font-weight: 700; color: var(--pink); line-height: 1.2; }
.tt-d { font-size: .72rem; color: var(--text-l); line-height: 1.2; }
.tt-e { font-size: .82rem; font-weight: 700; color: var(--pink); line-height: 1.2; }

.tl-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: box-shadow .2s;
  margin-left: .4rem;
}
.tl-card:hover { box-shadow: 0 4px 18px rgba(240,98,146,.12); }
.tl-card-body { padding: .9rem 1rem .7rem; }
.tl-keg   { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .25rem; }
.tl-hasil { font-size: .83rem; color: var(--text-m); margin-bottom: .45rem; }
.tl-img   { width: 100%; max-height: 200px; object-fit: cover; display: block; }
.tl-foot  { display: flex; align-items: center; justify-content: space-between; padding: .55rem 1rem .65rem; flex-wrap: wrap; gap: .5rem; }
.tl-acts  { display: flex; gap: .5rem; }
.tl-act-btn {
  display: flex; align-items: center; gap: .3rem;
  background: none; border: none;
  font-family: inherit; font-size: .8rem; color: var(--text-m);
  cursor: pointer; padding: .2rem .4rem; border-radius: 6px;
  transition: color .2s, background .2s;
}
.tl-act-btn:hover { background: var(--pink-xl); color: var(--pink-d); }
.tl-act-btn.del:hover { background: #fef2f2; color: #e53e3e; }
.tl-act-btn svg { width: 14px; height: 14px; }

/* ── BADGES ──────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 700; padding: .2rem .6rem;
  border-radius: 2rem; white-space: nowrap;
}
.b-done  { background: var(--pink-l);  color: var(--pink-d); border: 1px solid var(--pink-m); }
.b-proses{ background: var(--orange-l);color: #e65100;       border: 1px solid #ffcc80; }
.b-cepat { background: var(--gray-l);  color: var(--gray);   border: 1px solid #ddd; }

/* ── RIGHT PANEL ─────────────────────────────── */
.rcard {
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--border);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  margin-bottom: 1rem;
}
.rc-ttl {
  font-size: .92rem;
  font-weight: 700;
  color: var(--pink-d);
  margin-bottom: .9rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.rc-link {
  background: none; border: none;
  font-family: inherit; font-size: .79rem;
  color: var(--pink); cursor: pointer; padding: 0;
  text-decoration: none; margin-top: .7rem; display: block;
  transition: color .2s;
}
.rc-link:hover { color: var(--pink-d); }

/* Quick note preview */
.qp-item {
  background: var(--pink-xl);
  border-radius: var(--rs);
  padding: .75rem .9rem;
  border: 1px solid var(--pink-l);
  margin-bottom: .5rem;
  position: relative;
}
.qp-text { font-size: .83rem; color: var(--text); line-height: 1.5; margin-bottom: .4rem; font-style: italic; }
.qp-meta { font-size: .73rem; color: var(--text-l); display: flex; align-items: center; justify-content: space-between; }
.qp-edit-btn {
  background: none; border: none; cursor: pointer; color: var(--pink); padding: 0;
}
.qp-empty { font-size: .82rem; color: var(--text-l); text-align: center; padding: .8rem 0; }

/* Weekly summary */
.wrow {
  display: flex; align-items: center; justify-content: space-between;
  padding: .5rem 0; border-bottom: 1px solid var(--pink-l);
  font-size: .84rem;
}
.wrow:last-child { border-bottom: none; }
.wrow-label { color: var(--text-m); }
.wrow-val   { font-weight: 700; color: var(--text); }

/* ── OTHER PAGES HEADER ──────────────────────── */
.ph {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.ptitle { font-size: 1.5rem; font-weight: 700; color: var(--text); }

/* ── FILTER BAR ──────────────────────────────── */
.filter-bar {
  display: flex; gap: .7rem; margin-bottom: 1.3rem; flex-wrap: wrap; align-items: center;
}
.sbox {
  display: flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 2rem; padding: .5rem 1rem; flex: 1; min-width: 180px;
  transition: border-color .2s;
}
.sbox:focus-within { border-color: var(--pink); }
.si-search { width: 16px; height: 16px; flex-shrink: 0; }
.sinput { border: none; outline: none; background: transparent; font-family: inherit; font-size: .9rem; color: var(--text); width: 100%; }
.fmonth { max-width: 170px; }

/* ── TABLE ───────────────────────────────────── */
.twrap {
  background: var(--white); border-radius: var(--r);
  border: 1px solid var(--border); overflow: hidden; overflow-x: auto;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.dtbl { width: 100%; border-collapse: collapse; }
.dtbl th {
  background: var(--pink-xl); text-align: left; padding: .75rem .9rem;
  font-size: .73rem; font-weight: 700; color: var(--text-m);
  text-transform: uppercase; letter-spacing: .07em;
  border-bottom: 1.5px solid var(--border); white-space: nowrap;
}
.dtbl td { padding: .75rem .9rem; font-size: .86rem; border-bottom: 1px solid #fdf0f4; vertical-align: middle; }
.dtbl tbody tr:last-child td { border-bottom: none; }
.dtbl tbody tr:hover td { background: var(--pink-xl); }
.tbl-empty { text-align: center; padding: 2.5rem; color: var(--text-l); }
.td-thumb { width: 42px; height: 42px; object-fit: cover; border-radius: 6px; border: 1px solid var(--border); }
.td-acts { display: flex; gap: .3rem; }
.ta-btn {
  border: 1px solid var(--border); border-radius: 6px;
  padding: .22rem .6rem; font-size: .75rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all .18s;
  background: var(--white); color: var(--text-m);
}
.ta-btn:hover  { background: var(--pink-xl); color: var(--pink-d); border-color: var(--pink-l); }
.ta-btn.del    { background: #fff5f5; color: #e53e3e; border-color: #fecdd3; }
.ta-btn.del:hover { background: #fee2e2; }

/* ── CALENDAR ────────────────────────────────── */
.kal-layout { display: grid; grid-template-columns: 310px 1fr; gap: 1.2rem; align-items: start; }
.cal-panel {
  background: var(--white); border-radius: var(--r); border: 1px solid var(--border);
  padding: 1.3rem; box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.cal-ttl { font-size: .95rem; font-weight: 700; color: var(--text); }
.cal-wd  { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: .35rem; }
.cal-wd span { text-align: center; font-size: .68rem; font-weight: 700; color: var(--text-l); padding: .2rem 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; }
.cal-d {
  aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; position: relative;
  border-radius: 8px; font-size: .82rem; color: var(--text);
  cursor: pointer; transition: all .15s; user-select: none;
}
.cal-d:hover:not(.om) { background: var(--pink-xl); }
.cal-d.om    { color: var(--text-l); opacity: .4; pointer-events: none; }
.cal-d.today { background: var(--pink-xl); color: var(--pink-d); font-weight: 700; }
.cal-d.has::after { content:''; position:absolute; bottom:3px; width:5px; height:5px; border-radius:50%; background: var(--pink); }
.cal-d.sel   { background: var(--pink) !important; color: white !important; }
.cal-d.sel::after { background: rgba(255,255,255,.8); }
.cal-detail {
  background: var(--white); border-radius: var(--r); border: 1px solid var(--border);
  padding: 1.3rem; min-height: 250px; box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.cal-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 200px; color: var(--text-l); text-align: center; font-size: .88rem; line-height: 1.7; }
.cal-det-date { font-size: .78rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .9rem; }
.cal-items { display: flex; flex-direction: column; gap: .6rem; }
.cal-mini { border-radius: var(--rs); padding: .7rem .9rem; background: var(--pink-xl); border-left: 3px solid var(--pink-m); }
.cm-keg { font-size: .87rem; font-weight: 600; color: var(--text); }
.cm-hasil { font-size: .8rem; color: var(--text-m); margin-top: .12rem; }
.cm-img { width: 100%; max-height: 120px; object-fit: cover; border-radius: 6px; margin-top: .4rem; }

/* ── REKAP ───────────────────────────────────── */
.rekap-ctrl { margin-bottom: 1.3rem; }

/* ── BUTTONS ─────────────────────────────────── */
.btn-pink {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--pink); color: white;
  border: none; border-radius: 2rem;
  padding: .6rem 1.3rem; font-family: inherit; font-size: .87rem;
  font-weight: 700; cursor: pointer; white-space: nowrap;
  box-shadow: 0 4px 14px rgba(240,98,146,.35);
  transition: transform .2s, box-shadow .2s;
}
.btn-pink:hover  { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(240,98,146,.42); }
.btn-pink:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--white); color: var(--text-m);
  border: 1.5px solid var(--border); border-radius: 2rem;
  padding: .52rem 1.1rem; font-family: inherit; font-size: .84rem;
  font-weight: 600; cursor: pointer; transition: all .2s;
}
.btn-ghost:hover { border-color: var(--pink-l); color: var(--pink-d); }

.btn-icon {
  background: var(--white); border: 1.5px solid var(--border); border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer; color: var(--pink-d); transition: all .2s;
}
.btn-icon:hover { background: var(--pink-xl); border-color: var(--pink-l); }

/* ── MODAL ───────────────────────────────────── */
.overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.35); backdrop-filter: blur(4px);
  z-index: 200; align-items: center; justify-content: center; padding: 1rem;
}
.overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 20px;
  max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  animation: mIn .28s cubic-bezier(.34,1.56,.64,1);
}
.modal-sm { max-width: 420px; }
@keyframes mIn { from { transform: translateY(24px) scale(.96); opacity: 0; } to { transform: none; opacity: 1; } }
.mhdr { display: flex; align-items: center; justify-content: space-between; padding: 1.3rem 1.4rem 0; }
.mttl { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.mclose {
  background: var(--pink-xl); border: none; border-radius: 50%;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; cursor: pointer; color: var(--text-m); transition: background .2s;
}
.mclose:hover { background: var(--pink-l); }
.mbody { padding: 1.1rem 1.4rem; }
.mftr  { display: flex; justify-content: flex-end; gap: .6rem; padding-top: .9rem; }
.mhint { font-size: .82rem; color: var(--text-l); margin-bottom: .9rem; line-height: 1.5; }

/* ── FORM ────────────────────────────────────── */
.frow { margin-bottom: .9rem; }
.fg2  { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin-bottom: .9rem; }
.flbl {
  display: block; font-size: .74rem; font-weight: 700; color: var(--text-m);
  margin-bottom: .3rem; text-transform: uppercase; letter-spacing: .05em;
}
.req { color: var(--pink); }
.ifield {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--rs);
  padding: .58rem .85rem; font-family: inherit; font-size: .9rem;
  color: var(--text); background: white; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.ifield:focus { border-color: var(--pink-m); box-shadow: 0 0 0 3px var(--pink-l); }
.ftxt { resize: vertical; min-height: 75px; }

.dur-chip {
  display: none; background: var(--pink-xl); border: 1.5px solid var(--pink-l);
  border-radius: var(--rs); padding: .4rem .8rem; font-size: .82rem;
  color: var(--pink-d); margin-bottom: .9rem;
}
.dur-chip.on { display: block; }

.img-zone {
  position: relative; border: 2px dashed var(--pink-l);
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  background: var(--pink-xl); transition: border-color .2s;
}
.img-zone:hover { border-color: var(--pink); }
.img-input { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; width: 100%; }
.img-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem; gap: .35rem; color: var(--text-l); font-size: .83rem; text-align: center;
}
.img-prev { width: 100%; max-height: 240px; object-fit: cover; display: block; }
.img-clr {
  position: absolute; top: .5rem; right: .5rem; z-index: 3;
  background: rgba(255,255,255,.92); border: 1px solid var(--border);
  border-radius: 2rem; padding: .2rem .65rem; font-size: .74rem;
  cursor: pointer; font-family: inherit; color: #e53e3e;
}

.rrow { display: flex; gap: .7rem; flex-wrap: wrap; }
.ropt { display: flex; align-items: center; gap: .35rem; cursor: pointer; }
.ropt input { accent-color: var(--pink); }
.chip { font-size: .82rem; font-weight: 600; padding: .22rem .65rem; border-radius: 2rem; border: 1.5px solid transparent; }
.chip-g { background: var(--green-l); color: #2e7d32; border-color: #a5d6a7; }
.chip-o { background: var(--orange-l); color: #e65100; border-color: #ffcc80; }

/* ── TOAST ───────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(5rem);
  background: #333; color: white;
  padding: .65rem 1.4rem; border-radius: 2rem;
  font-size: .85rem; font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  z-index: 999; transition: transform .35s cubic-bezier(.34,1.56,.64,1); pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── SCROLLBAR ───────────────────────────────── */
.content::-webkit-scrollbar { width: 5px; }
.content::-webkit-scrollbar-track { background: transparent; }
.content::-webkit-scrollbar-thumb { background: var(--pink-l); border-radius: 3px; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) { .stats4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 960px)  { .dash-grid { grid-template-columns: 1fr; } .right-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (max-width: 860px)  { .kal-layout { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  body { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: sticky; top: 0; flex-direction: row; flex-wrap: wrap; padding: .6rem; z-index: 50; }
  .sb-brand { border-bottom: none; border-right: 1px solid var(--pink-l); padding: .5rem .8rem; }
  .sb-nav { flex-direction: row; padding: .4rem; }
  .nb { padding: .45rem .7rem; font-size: .8rem; }
  .sb-quick-area, .sb-art { display: none; }
  .content { padding: 1.2rem 1rem 3rem; }
  .right-col { display: none; }
  .stats4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px)  {
  .stats4 { grid-template-columns: 1fr; }
  .fg2 { grid-template-columns: 1fr; }
}
