@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Potta+One&display=swap');

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

:root {
  --text-sky: #fff;
  --text-cloud: #b8d4e8;
}

body {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, sans-serif;
}

.sky-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(0deg, #62a0d8 0%, #2178d1 50%, #085cb3 100%);
  z-index: 0;
}

#cloud-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

.page {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 30px 40px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  font-family: 'Potta One', cursive;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-sky);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.header-left h1 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-sky);
  opacity: 0.85;
  white-space: nowrap;
}

.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Bubble Nav */
.nav-wrap {
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: fit-content;
  border-radius: 500px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.nav-wrap::after {
  content: "";
  display: block;
  position: absolute;
  inset: -3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  border-radius: 500px;
  z-index: -1;
}

.nav {
  width: fit-content;
  anchor-name: --nav;
  margin: 5px;
}

.nav a {
  z-index: 10;
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

.nav a.active {
  anchor-name: --active;
  color: #1a3a5c;
}

.nav a:hover::before {
  anchor-name: --nav;
}

.bubble {
  top: anchor(top);
  right: anchor(right);
  bottom: anchor(bottom);
  left: anchor(left);
  position: absolute;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 500px;
}

.bubble.active {
  position-anchor: --active;
  z-index: 2;
  background: linear-gradient(180deg, #fff, #d0e8ff);
  box-shadow: inset 0 2px 7px rgba(255,255,255,0.8), 0 4px 15px rgba(0,0,0,0.15);
}

.bubble.hover {
  z-index: 1;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 2px 7px rgba(255,255,255,0.1);
  position-anchor: --nav;
}

/* Home View */
.home-view {
  text-align: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.home-view.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

.posts-section h2 {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-sky);
  opacity: 0.6;
  text-transform: lowercase;
  letter-spacing: 0.15em;
  margin-bottom: 15px;
}

#latest-posts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-sky);
  font-weight: 500;
  transition: all 0.3s;
}

.post-link:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.post-date {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Blog View */
.blog-view {
  width: 100%;
  max-width: 700px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  position: absolute;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.blog-view.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.blog-view {
  overflow-x: hidden;
}

.blog-view::-webkit-scrollbar {
  width: 4px;
}

.blog-view::-webkit-scrollbar-track {
  background: transparent;
}

.blog-view::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

.blog-view::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.35);
}

.contrast-text {
  color: var(--text-cloud) !important;
}

@media (max-width: 768px) {
  .page {
    padding: 20px;
  }
  
  .header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
  
  .header-left {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .logo {
    font-size: 1.8rem;
  }
  
  .tagline-wrap h1,
  .header-left h1 {
    font-size: 1rem;
    white-space: normal;
  }
  
  .nav-wrap {
    align-self: center;
    width: auto;
  }
  
  .nav {
    display: flex;
    width: auto;
    justify-content: center;
  }
  
  .nav a {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .bubble.active,
  .bubble.hover {
    transition: all 0.2s ease;
  }
  
  .main-content {
    padding-top: 20px;
  }
  
  .blog-view {
    max-height: calc(100vh - 250px);
  }
  
  .blog-item {
    padding: 15px 18px;
  }
  
  .blog-item-title {
    font-size: 1rem;
  }
  
  .article-header h1 {
    font-size: 1.5rem;
  }
  
  .post-link {
    padding: 12px 18px;
    gap: 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 15px;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .header-left h1 {
    font-size: 0.9rem;
  }
  
  .nav a {
    padding: 8px 12px;
    font-size: 0.8rem;
  }
  
  .posts-section h2 {
    font-size: 0.75rem;
  }
  
  .post-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .blog-view {
    max-height: calc(100vh - 220px);
  }
}

.easter-egg {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  font-size: 12px;
  z-index: 100;
  transition: all 0.3s;
  cursor: pointer;
}

.easter-egg:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

/* TV Modal */
.tv-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.tv-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.tv-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}

.tv-modal-content {
  position: relative;
  z-index: 1;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}

.tv-modal.visible .tv-modal-content {
  transform: scale(1) translateY(0);
}

.tv-close,
.tv-detach {
  position: absolute;
  top: -40px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.tv-close {
  right: 0;
  font-size: 24px;
}

.tv-detach {
  right: 46px;
}

.tv-close:hover,
.tv-detach:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.tv-drag-handle {
  display: none;
}

/* Detached floating mode */
.tv-modal.detached {
  pointer-events: none;
}

.tv-modal.detached .tv-modal-backdrop {
  display: none;
}

.tv-modal.detached .tv-modal-content {
  pointer-events: auto;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transform: none !important;
  cursor: move;
}

.tv-modal.detached .monitor-container {
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.tv-modal.detached .tv-drag-handle {
  display: block;
  position: absolute;
  top: -30px;
  left: 0;
  right: 80px;
  height: 30px;
  cursor: move;
}

.tv-modal.detached .tv-layout {
  flex-direction: column;
  gap: 15px;
}

.tv-modal.detached .tv-controls {
  display: none;
}

.tv-modal.detached .monitor-container {
  width: 280px;
}

.tv-modal.detached .tv-close,
.tv-modal.detached .tv-detach {
  top: -30px;
  width: 28px;
  height: 28px;
  font-size: 16px;
}

.tv-modal.detached .tv-close {
  right: 0;
}

.tv-modal.detached .tv-detach {
  right: 36px;
}

.tv-layout {
  display: flex;
  align-items: center;
  gap: 40px;
}

.tv-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.control-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.key {
  min-width: 50px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  font-family: monospace;
}

.control-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.monitor-container {
  position: relative;
  width: 50vmin;
  max-width: 500px;
  aspect-ratio: 481 / 519;
}

.monitor-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  image-rendering: -webkit-optimize-contrast;
}

.game-screen {
  position: absolute;
  top: 11.8%;
  left: 8.1%;
  width: 83.8%;
  height: 62.5%;
  background: #000;
  border-radius: 4.5% / 3.5%;
  z-index: 5;
  overflow: hidden;
}

.game-screen #game {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 2px), calc(-50% - 9px)) scale(0.92);
}

.game-screen video,
.game-screen iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.crt-curve {
  position: absolute;
  top: 11.8%;
  left: 8.1%;
  width: 83.8%;
  height: 62.5%;
  border-radius: 4.5% / 3.5%;
  z-index: 7;
  pointer-events: none;
  box-shadow: 
    inset 0 0 60px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.scanlines {
  position: absolute;
  top: 11.8%;
  left: 8.1%;
  width: 83.8%;
  height: 62.5%;
  border-radius: 4.5% / 3.5%;
  z-index: 8;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.12) 0px,
    rgba(0, 0, 0, 0.12) 1px,
    transparent 1px,
    transparent 2px
  );
  opacity: 0.5;
}

.screen-glare {
  position: absolute;
  top: 11.8%;
  left: 8.1%;
  width: 83.8%;
  height: 62.5%;
  border-radius: 4.5% / 3.5%;
  z-index: 9;
  pointer-events: none;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    linear-gradient(
      165deg,
      rgba(255, 255, 255, 0.06) 0%,
      transparent 35%,
      transparent 100%
    );
}

.channel-btn {
  position: absolute;
  width: 5.4%;
  height: 5%;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
  border-radius: 50%;
}

.channel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.channel-btn.plus {
  top: 81.5%;
  left: 63%;
}

.channel-btn.minus {
  top: 86%;
  left: 59%;
}

.channel-indicator {
  position: absolute;
  top: 13%;
  right: 10%;
  background: rgba(0, 0, 0, 0.7);
  color: #0f0;
  font-family: monospace;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.3s;
}

.channel-indicator.show {
  opacity: 1;
}

.static-overlay {
  position: absolute;
  top: 11.8%;
  left: 8.1%;
  width: 83.8%;
  height: 62.5%;
  border-radius: 4.5% / 3.5%;
  z-index: 6;
  pointer-events: none;
  background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
  opacity: 0;
  transition: opacity 0.1s;
}

.static-overlay.show {
  opacity: 0.3;
  animation: staticFlicker 0.1s infinite;
}

@keyframes staticFlicker {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.tv-resize-handle {
  display: none;
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 30px;
  height: 30px;
  cursor: se-resize;
  z-index: 30;
}

.tv-resize-handle::after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  border-right: 3px solid rgba(255,255,255,0.6);
  border-bottom: 3px solid rgba(255,255,255,0.6);
}

.tv-modal.detached .tv-resize-handle {
  display: block;
}

.tv-modal.detached .monitor-container {
  width: 280px;
  min-width: 200px;
  max-width: 600px;
}

@media (max-width: 800px) {
  .tv-layout {
    flex-direction: column;
    gap: 20px;
  }
  
  .tv-controls {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .control-item {
    gap: 8px;
  }
  
  .key {
    min-width: 40px;
    padding: 6px 10px;
    font-size: 12px;
  }
  
  .control-label {
    font-size: 11px;
  }
  
  .monitor-container {
    width: 85vw;
    max-width: 400px;
  }
  
  .tv-close,
  .tv-detach {
    width: 32px;
    height: 32px;
    font-size: 18px;
    top: -36px;
  }
  
  .tv-detach {
    right: 40px;
  }
}

@media (max-width: 480px) {
  .tv-controls {
    display: none;
  }
  
  .monitor-container {
    width: 90vw;
  }
  
  .tv-modal-content {
    padding: 10px;
  }
}

/* Mobile Gamepad */
.mobile-gamepad {
  display: none;
  width: 100%;
  padding: 15px;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 800px) {
  .mobile-gamepad {
    display: flex;
  }
}

.gamepad-dpad {
  position: relative;
  width: 120px;
  height: 120px;
}

.dpad-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  user-select: none;
}

.dpad-btn:active {
  background: rgba(255, 255, 255, 0.4);
}

.dpad-btn.up { top: 0; left: 50%; transform: translateX(-50%); }
.dpad-btn.down { bottom: 0; left: 50%; transform: translateX(-50%); }
.dpad-btn.left { left: 0; top: 50%; transform: translateY(-50%); }
.dpad-btn.right { right: 0; top: 50%; transform: translateY(-50%); }

.gamepad-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.action-btn {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
}

.action-btn:active {
  background: rgba(255, 255, 255, 0.4);
}

.action-btn.primary {
  background: rgba(255, 100, 100, 0.3);
  border-color: rgba(255, 100, 100, 0.5);
}

/* Hide EmulatorJS built-in virtual gamepad */
#game .ejs_virtualGamepad_container,
#game .ejs_virtualGamepad_left,
#game .ejs_virtualGamepad_right,
.ejs_virtualGamepad_container {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.canva-logo {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  height: 1em;
  filter: brightness(0) invert(1);
}

.golf-link {
  color: inherit;
  text-decoration: underline;
}

.uhaul {
  display: none;
  position: fixed;
  width: 200px;
  z-index: 1000;
  pointer-events: none;
}

.uhaul.active {
  display: block;
}

.subtext {
  font-size: 0.5em;
  opacity: 0.6;
}

.shaggy {
  animation: shake 0.1s infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  75% { transform: translateX(3px); }
}

/* View transitions */
.hero-card,
.posts {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-card.hidden,
.posts.hidden {
  opacity: 0;
  transform: translateY(-30px) scale(0.95);
  pointer-events: none;
  position: absolute;
}

/* Blog Panel */
.blog-panel {
  position: absolute;
  width: 100%;
  max-width: 650px;
  max-height: 50vh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.blog-panel.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.blog-panel::-webkit-scrollbar {
  width: 8px;
}

.blog-panel::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

.blog-panel::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 4px;
}

.blog-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-sky);
  margin-bottom: 25px;
  text-align: center;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: opacity 0.3s ease;
}

.blog-list.hidden {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.blog-item {
  display: block;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  border-color: rgba(255, 255, 255, 0.35);
}

.blog-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-sky);
  margin-bottom: 6px;
}

.blog-item-meta {
  font-size: 0.8rem;
  color: var(--text-sky);
  opacity: 0.6;
  margin-bottom: 8px;
}

.blog-item-preview {
  font-size: 0.9rem;
  color: var(--text-sky);
  opacity: 0.8;
  line-height: 1.5;
}

/* Blog Article */
.blog-article {
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.blog-article.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.back-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-sky);
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
  transition: all 0.2s;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.article-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.article-header time {
  font-size: 0.85rem;
  color: var(--text-sky);
  opacity: 0.6;
  display: block;
  margin-bottom: 10px;
}

.article-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-sky);
  line-height: 1.3;
}

.article-content {
  color: var(--text-sky);
  line-height: 1.8;
  font-size: 1rem;
}

.article-content p {
  margin-bottom: 1.2em;
}

.article-content h2 {
  font-size: 1.4rem;
  margin: 1.5em 0 0.8em;
  color: var(--text-sky);
}

.article-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1em 0;
}

.article-content a {
  color: #a8d4ff;
  text-decoration: underline;
}

.article-content code {
  background: rgba(0, 0, 0, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}

.article-content pre {
  background: rgba(0, 0, 0, 0.25);
  padding: 15px 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 1em 0;
}

.article-content pre code {
  background: none;
  padding: 0;
}

.article-content blockquote {
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  padding-left: 20px;
  margin: 1em 0;
  opacity: 0.85;
  font-style: italic;
}

.article-content ul,
.article-content ol {
  margin: 1em 0;
  padding-left: 25px;
}

.article-content li {
  margin-bottom: 0.5em;
}

.no-posts {
  color: var(--text-sky);
  opacity: 0.6;
  text-align: center;
  padding: 20px;
}

#latest-posts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
