/* ==========================================================================
   1. Base Tokens & Deep Maroon Palette
   ========================================================================== */
:root {
  --bg-main: #090a0d;
  --bg-card: rgba(18, 20, 26, 0.75);
  --bg-card-hover: rgba(28, 30, 40, 0.9);
  --navbar-bg: rgba(9, 10, 13, 0.85);
  --mobile-nav-bg: rgba(9, 10, 13, 0.96);
  
  /* Deep Maroon & Gold Accents */
  --maroon-deep: #42060f;
  --maroon-base: #6b0b1a;
  --maroon-vibrant: #9e1027;
  --maroon-bright: #e11d48;
  --maroon-glow: rgba(158, 16, 39, 0.35);
  
  --gold-accent: #d49a37;
  --gold-subtle: rgba(212, 154, 55, 0.15);
  --segi-orange: #c77202;
  --segi-teal: #0284c7;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-crimson: rgba(225, 29, 72, 0.35);
  --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.5);
  --aura-color: rgba(158, 16, 39, 0.22);
  
  --radius-lg: 16px;
  --radius-md: 10px;
}

body.light-theme {
  --bg-main: #f4f6f9;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-card-hover: #ffffff;
  --navbar-bg: rgba(255, 255, 255, 0.9);
  --mobile-nav-bg: rgba(255, 255, 255, 0.98);
  
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-crimson: rgba(158, 16, 39, 0.25);
  --shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);
  --aura-color: rgba(158, 16, 39, 0.1);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 550px;
  background: radial-gradient(circle, var(--aura-color) 0%, rgba(9, 10, 13, 0) 70%);
  z-index: -1;
  pointer-events: none;
  transition: background 0.3s ease;
}

/* ==========================================================================
   2. Navbar, Brand & Controls
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--segi-orange);
  font-weight: 600;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  outline: none;
}

.toggle-track {
  width: 58px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  box-sizing: border-box;
  transition: background 0.3s ease, border-color 0.3s ease;
}

body.light-theme .toggle-track {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.15);
}

.toggle-icon {
  font-size: 0.85rem;
  z-index: 1;
  user-select: none;
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--maroon-bright);
  box-shadow: 0 2px 8px rgba(225, 29, 72, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

body.light-theme .toggle-thumb {
  transform: translateX(26px);
  background: #f59e0b;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a.active {
  color: var(--maroon-bright);
  font-weight: 700;
  border-bottom: 2px solid var(--maroon-bright);
  padding-bottom: 2px;
}

body.light-theme .nav-links a.active {
  color: var(--maroon-base);
  border-color: var(--maroon-base);
}

.btn-nav {
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  transition: all 0.2s ease !important;
}

body.light-theme .btn-nav {
  background: rgba(0, 0, 0, 0.04);
}

.btn-nav:hover {
  background: rgba(158, 16, 39, 0.2) !important;
  border-color: var(--maroon-bright);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.open .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.open .bar:nth-child(2) { opacity: 0; }
.menu-toggle.open .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ==========================================================================
   3. Shared Layout, Headers & Hero Section
   ========================================================================== */
.hero {
  max-width: 860px;
  margin: 5rem auto 3.5rem;
  text-align: center;
  padding: 0 1.5rem;
}

.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.3);
  color: var(--maroon-bright);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--maroon-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--maroon-bright);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.gradient-crimson {
  background: linear-gradient(135deg, #ff4d6d 0%, var(--maroon-bright) 50%, var(--maroon-base) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2.2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--maroon-bright), var(--maroon-deep));
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(158, 16, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

body.light-theme .btn-secondary {
  background: rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  display: inline-block;
}

.stats-ribbon {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: 0.02em;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
}

.section, .page-content {
  max-width: 1100px;
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.section-header, .page-header {
  margin-bottom: 2.5rem;
}

.page-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  color: var(--maroon-bright);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.section-header h2, .page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-top: 0.3rem;
  color: var(--text-main);
}

.section-subtext {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 0.35rem;
}

/* ==========================================================================
   4. Landing Cards & Grid System
   ========================================================================== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, background 0.3s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-crimson);
}

.card-media {
  width: calc(100% + 3.6rem);
  margin: -1.8rem -1.8rem 1.25rem -1.8rem;
  height: 180px;
  overflow: hidden;
  background: #141721;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img {
  transform: scale(1.04);
}

.card-media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #161a23, #222938);
}

body.light-theme .card-media-placeholder {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.placeholder-icon {
  font-size: 3rem;
}

.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--segi-orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--maroon-bright);
  text-decoration: none;
  display: inline-block;
}

.team-card {
  text-align: center;
  padding: 2.2rem 1.5rem;
}

.avatar-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  padding: 3px;
  background: linear-gradient(135deg, var(--maroon-bright), #334155);
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.team-card .role {
  color: var(--maroon-bright);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.badge-year {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

body.light-theme .badge-year {
  background: rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   5. Dedicated Page: Meet the Team (`team.html`)
   ========================================================================== */
.objectives-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.objective-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--maroon-vibrant);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: transform 0.2s ease;
}

.objective-card:hover {
  transform: translateY(-3px);
}

.obj-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-accent);
  opacity: 0.8;
  display: block;
  margin-bottom: 0.3rem;
}

.objective-card h4 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.objective-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.council-tier {
  margin-bottom: 4rem;
}

.tier-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.presidential-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.council-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.council-card:hover {
  transform: translateY(-6px);
  border-color: var(--maroon-vibrant);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4), 0 0 20px var(--maroon-glow);
}

.highlight-card {
  border-color: rgba(212, 154, 55, 0.4);
  background: linear-gradient(180deg, rgba(107, 11, 26, 0.15) 0%, var(--bg-card) 60%);
}

.avatar-frame {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  padding: 4px;
  background: linear-gradient(135deg, var(--maroon-vibrant), var(--gold-accent));
  overflow: hidden;
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.badge-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-accent);
  margin-bottom: 0.4rem;
}

.council-card h3 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.council-card .tenure {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   6. Dedicated Page: Events & Timeline (`events.html`)
   ========================================================================== */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.date-badge {
  flex-shrink: 0;
  width: 90px;
  background: var(--bg-card);
  border: 1px solid var(--maroon-vibrant);
  border-radius: var(--radius-md);
  padding: 0.8rem 0.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.date-badge .month {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--maroon-bright);
  letter-spacing: 0.1em;
}

.date-badge .day {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
}

.date-badge .year {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.past-badge {
  border-color: var(--border-subtle);
  opacity: 0.7;
}

.past-badge .month {
  color: var(--text-muted);
}

.timeline-card {
  flex: 1;
  display: flex;
  gap: 1.8rem;
  padding: 1.6rem;
}

.timeline-media {
  width: 220px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #151821;
}

.timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-media {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--maroon-deep), #1e2230);
}

.timeline-info {
  flex: 1;
}

.event-tags {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.tag-status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.tag-status.live {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.tag-status.past {
  background: rgba(148, 163, 184, 0.1);
  color: var(--text-muted);
}

.tag-cat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-accent);
  padding: 0.2rem 0;
}

.timeline-info h2 {
  font-size: 1.35rem;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.timeline-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* ==========================================================================
   7. Dedicated Page: Gallery Bento Grid (`gallery.html`)
   ========================================================================== */
.bento-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 240px;
  background: #131620;
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-item:hover {
  transform: translateY(-4px);
  border-color: var(--maroon-vibrant);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 500px;
}

.bento-wide {
  grid-column: span 2;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bento-item:hover img {
  transform: scale(1.04);
}

.bento-placeholder-art {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, var(--maroon-base) 0%, #0d0f14 80%);
  font-size: 3.5rem;
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(9, 10, 13, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.bento-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.bento-overlay h3 {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.bento-overlay p {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.4;
}

/* ==========================================================================
   8. Footer & Mobile Responsiveness
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 2.8rem 1.5rem;
  margin-top: 6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--maroon-bright);
}

@media (max-width: 820px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mobile-nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a { font-size: 1.1rem; width: 100%; }
  .btn-nav { text-align: center; width: 100%; }
  .stats-ribbon { flex-direction: column; gap: 1.2rem; }
  .stat-divider { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  
  .timeline-row { flex-direction: column; }
  .date-badge { width: 100%; display: flex; justify-content: space-around; align-items: center; }
  .date-badge .day { font-size: 1.4rem; }
  .timeline-card { flex-direction: column; }
  .timeline-media { width: 100%; height: 180px; }
  
  .bento-mosaic { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; grid-row: span 1; min-height: 280px; }
}