/* CSS Variables for Light Mode */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap");
:root {
  /* Colors */
  --bg-color: #ededed;
  --text-color: #202020;
  --highlight-color: #fd5a1e;
  --secondary-text-color: #555555;
  --border-color: #dddddd;
  --card-bg-color: #f8f8f8;
  /* RGB versions for opacity */
  --bg-color-rgb: 237, 237, 237;
  --border-color-rgb: 221, 221, 221;
  /* Font Families */
  --font-heading: "Newsreader", georgia, serif;
  --font-body: "IBM Plex Sans", arial, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  /* NEW Typographic Scale */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.5rem; /* 24px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-xs: 0.75rem; /* 12px */
}

/* CSS Variables for Dark Mode */
html.dark {
  --bg-color: #121212;
  --text-color: #e0e0e0;
  --highlight-color: #ff7b40;
  --secondary-text-color: #b0b0b0;
  --border-color: #444444;
  --card-bg-color: #1e1e1e;
  /* RGB versions for opacity */
  --bg-color-rgb: 18, 18, 18;
  --border-color-rgb: 68, 68, 68;
}

/* Base styles and resets for HTML elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  padding: 3%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  font-weight: 500;
  color: var(--highlight-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* NEW Heading Rules */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}

h1,
h2 {
  font-size: var(--font-size-lg); /* 24px */
}

h3,
h4,
h5,
h6 {
  font-size: var(--font-size-base); /* 16px */
}

p {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: 1em;
}

.text-highlight {
  color: var(--highlight-color);
}

.font-mono {
  font-family: var(--font-mono);
}

.text-meta {
  font-size: var(--font-size-meta);
  color: var(--secondary-text-color);
}

.card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
}

.toggle-button {
  background-color: var(--highlight-color);
  color: var(--bg-color); /* Text color contrasting with highlight */
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px; /* Fully rounded */
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toggle-button:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* ----
.ibm-plex-sans-<uniquifier> {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

--- */
.ibm-plex-sans-reg {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.ibm-plex-sans-bold {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/*---
.newsreader-<uniquifier> {
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
  ---*/
.newsreader-reg {
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.newsreader-bold {
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

/*---

.jetbrains-mono-<uniquifier> {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
  ---*/
.jetbrains-mono-reg {
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

/*
  Site Header Styles
  - .site-header is the full-width sticky container.
  - .header-content is the inner container with max-width.
*/
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* The Frosted Glass Effect */
  /* NOTE: The background color MUST be semi-transparent for the blur to be visible. */
  background-color: rgba(var(--bg-color-rgb), 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  border-bottom: 1px solid rgba(var(--border-color-rgb), 0.5);
}

/* The inner container for the content */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

.logo a {
  font-family: var(--font-heading);
  font-weight: 900;
  text-decoration: none;
  color: var(--text-color);
  font-size: 2rem;
}

/*
  Main Navigation
*/
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  font-size: 1rem;
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: var(--highlight-color);
}

/*
  Mobile Navigation & Hamburger
*/
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
.hamburger-icon::before, .hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
.hamburger-icon::before {
  top: -8px;
}
.hamburger-icon::after {
  bottom: -8px;
}

body.menu-open .mobile-nav-toggle .hamburger-icon {
  background-color: transparent;
}
body.menu-open .mobile-nav-toggle .hamburger-icon::before {
  transform: translateY(8px) rotate(45deg);
}
body.menu-open .mobile-nav-toggle .hamburger-icon::after {
  transform: translateY(-8px) rotate(-45deg);
}

/*
  Responsive Styles
*/
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: fixed; /* Use fixed to cover the whole screen */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* Use the same frosted glass effect for the mobile menu */
    background-color: rgba(var(--bg-color-rgb), 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding-top: 6rem; /* Push content down below header */
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  body.menu-open .main-nav {
    display: block;
  }
}
footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 4rem auto 0;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border-color);
}
footer .footer-logo {
  display: block;
  max-width: 60px;
  margin-bottom: 1rem;
}
footer .copyright {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--secondary-text-color);
}
footer .footer-heading {
  font-size: var(--font-size-base);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-color);
}
footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
footer .footer-links a {
  color: var(--secondary-text-color);
  text-decoration: none;
  transition: color 0.2s;
}
footer .footer-links a:hover {
  color: var(--text-color);
  text-decoration: underline;
}

/* Mobile Layout: Stack the columns */
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.theme-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  background-color: var(--bg-color);
  border-radius: 34px;
  border: 1px solid var(--border-color);
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2), inset -1px -1px 3px rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}
.theme-switch .switch-thumb {
  position: absolute;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 3px;
  background-color: var(--bg-color);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight-color);
}
.theme-switch .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-switch .moon-icon {
  display: none;
}

html.dark .theme-switch {
  box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.1);
}
html.dark .theme-switch .switch-thumb {
  transform: translateX(26px);
  color: var(--highlight-color);
}
html.dark .theme-switch .sun-icon {
  display: none;
}
html.dark .theme-switch .moon-icon {
  display: block;
}

/* Main container for the work item page */
.workitem-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.workitem-header {
  margin-bottom: 3rem;
  text-align: center;
}

.workitem-excerpt {
  font-size: 1.25rem;
  color: var(--text-color-muted, #6b7280);
  max-width: 65ch;
  margin: 1rem auto 0;
}

/* Apply CSS Grid only inside a .workitem-container */
.workitem-container .page-layout-container {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 3fr;
  padding: 0; /* Reset padding as it's on the parent */
}

.workitem-container .page-sidebar .sidebar-sticky-content {
  position: sticky;
  top: 2rem;
}

/* This promotes the children of .page-content to be grid items */
.workitem-container .page-content {
  display: contents;
}

/* Target KirbyTags to make them span the full width */
.workitem-container .page-content .layout-img-fullwidth,
.workitem-container .page-content .layout-img-pair,
.workitem-container .page-content .layout-img-row,
.workitem-container .page-content .layout-img-mixedpair,
.workitem-container .page-content .layout-imgtext,
.workitem-container .page-content .layout-img-fullwidth-text {
  grid-column: 1/-1;
  margin-bottom: 2rem;
}

/*
==========================================================================
  1. DEFAULT PAGE LAYOUT (for Home, About, Work list, etc.)
==========================================================================
*/
.page-layout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.page-sidebar {
  flex: 1 1 180px;
}

.page-content {
  flex: 3 1 500px;
}

/*
==========================================================================
  2. WORK ITEM PAGE - REWORKED LAYOUT
==========================================================================
*/
.workitem-container-reworked {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.workitem-hero-image {
  margin: 0 0 3rem 0;
}

.workitem-header {
  text-align: center;
  margin-bottom: 4rem;
}

.workitem-excerpt {
  font-size: 1.25rem;
  color: var(--secondary-text-color);
  max-width: 65ch;
  margin: 1rem auto 0;
}

/* The main content grid for work items */
.workitem-content-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.grid-nav-cell {
  text-align: right;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary-text-color);
  padding-top: 0.1em;
}

/* Make images inside the content cell span the full width */
.grid-content-cell .kirby-block-image,
.grid-content-cell .kirby-block-gallery,
.grid-content-cell .kirby-block-video {
  grid-column: 1/-1;
  margin: 2rem 0;
}

/* Metadata footnote at the bottom */
.workitem-metadata {
  border-top: 1px solid var(--border-color);
  margin-top: 4rem;
  padding-top: 2rem;
}
.workitem-metadata h3 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.workitem-metadata dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1rem;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: var(--font-size-xs);
}
.workitem-metadata dt {
  font-weight: 700;
  grid-column: 1;
  color: var(--text-color);
}
.workitem-metadata dd {
  grid-column: 2;
  margin-left: 0;
  color: var(--secondary-text-color);
}
.workitem-metadata a {
  color: var(--text-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.workitem-metadata a:hover {
  color: var(--highlight-color);
}

/*
==========================================================================
  3. WORK LIST PAGE STYLES
==========================================================================
*/
.project-list {
  padding: 0; /* Removes default list indentation */
}

/* Use the direct child selector '>' to target only the main list items */
.project-list > .work-item {
  list-style: none; /* Removes the bullet point */
}

.year-heading {
  opacity: 0.8;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.year-group:first-child .year-heading {
  margin-top: 1rem;
}

.page-layout-container .work-excerpt {
  font-weight: 400;
  line-height: 1.6;
}

.work-item h3 {
  margin-bottom: 4px;
}

.project-list .work-item {
  padding: 16px 0;
}

.project-list .work-item:first-child {
  padding-top: 0;
}

.project-list .work-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Responsive stacking for tablet and mobile */
@media (max-width: 1023px) {
  .workitem-container .page-layout-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 3%;
  }
  .workitem-container .page-sidebar {
    position: static;
    padding-bottom: 1rem;
  }
  .workitem-container .page-sidebar h2 {
    font-size: var(--font-size-h4);
  }
}
/*
  Work Item Spacing Adjustments
*/
/* 1. Set the space between the title and the excerpt to 4px */
.work-item h3 {
  margin-top: 0;
  margin-bottom: 4px; /* Was 0.5rem, now 4px */
}

/* 2. Set the vertical space between each work item to 16px */
.project-list .work-item {
  padding: 16px 0; /* Adds 16px of space to the top and bottom */
}

/* Remove the top padding from the first item and the bottom border from the last */
.project-list .work-item:first-child {
  padding-top: 0;
}

.project-list .work-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

div.grid-content-cell figure ul {
  list-style: none;
}
.about-container h2 {
  font-size: var(--font-size-h3);
  margin-bottom: 1.5rem;
  color: var(--text-color);
}
.about-container p {
  font-size: var(--font-size-base);
  color: var(--secondary-text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.values-header {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}
.values-header h2 {
  margin: 0;
  font-size: var(--font-size-h4);
  font-family: var(--font-mono);
  font-weight: normal;
  color: var(--secondary-text-color);
}

.values-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem 1.5rem;
  align-items: center;
}
.values-container .value-content h3 {
  font-size: var(--font-size-h5);
  color: var(--highlight-color);
  margin-bottom: 0.5em;
}
.values-container .value-content p {
  font-size: var(--font-size-base);
  color: var(--secondary-text-color);
  line-height: 1.6;
}
.values-container .value-content.text-right {
  text-align: right;
}
.values-container .value-arrow {
  width: 100px;
}
.values-container .value-arrow img {
  width: 100%;
  height: auto;
  display: block;
}
.values-container .value-arrow .arrow-dark {
  display: none;
}

html.dark .value-arrow .arrow-light {
  display: none;
}
html.dark .value-arrow .arrow-dark {
  display: block;
}

@media (max-width: 768px) {
  .values-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .values-header h2 {
    font-size: var(--font-size-h5);
  }
  .values-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .values-container .value-content.text-right {
    text-align: left;
  }
  .values-container .value-arrow {
    transform: rotate(90deg);
    width: 40px;
    margin: 1.5rem auto;
  }
  .values-container .value-content.text-left {
    order: 1;
  }
  .values-container .value-arrow {
    order: 2;
  }
  .values-container .value-content.text-right {
    order: 3;
    margin-bottom: 2.5rem;
  }
}
.valuepair {
  display: flex;
  align-items: space-between;
  justify-content: center;
  margin: 2em 0;
  gap: 2em;
}

.valuepair-left,
.valuepair-right {
  width: 40%;
}

.valuepair-arrow {
  width: 48px;
  height: auto;
  align-self: center;
}

.valuepair-support {
  margin-top: 0.5em;
  font-size: 1em;
  color: #666;
}

.layout-img-fullwidth img {
  width: 100%;
  display: block;
}

.layout-img-pair,
.layout-img-row {
  display: flex;
  gap: 1em;
  justify-content: center;
}

.layout-img-pair.portrait img,
.layout-img-row.portrait img {
  aspect-ratio: 2/3;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.layout-img-pair.landscape img,
.layout-img-row.square img {
  aspect-ratio: 1/1;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.layout-img-row.square img {
  aspect-ratio: 1/1;
  width: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.layout-img-mixedpair {
  display: flex;
  align-items: flex-end;
  gap: 1em;
}

.layout-img-mixedpair img {
  max-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.layout-img-mixedpair .landscape {
  aspect-ratio: 16/9;
  width: 300px;
}

.layout-img-mixedpair .portrait {
  aspect-ratio: 2/3;
  width: 200px;
}

.layout-imgtext {
  display: flex;
  align-items: center;
  gap: 2em;
  margin: 2em 0;
}

.layout-imgtext.img-left img {
  order: 0;
}

.layout-imgtext.img-right img {
  order: 1;
}

.layout-imgtext-text {
  flex: 1;
}

.layout-img-fullwidth-text img {
  width: 100%;
  display: block;
}

.layout-img-fullwidth-text .layout-imgtext-text {
  margin-top: 1em;
  text-align: center;
}

.values-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}
.values-header h2 {
  margin: 0;
  font-size: var(--font-size-h4);
}

.work-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem 1rem;
  align-items: flex-start;
}
.work-container .work-year {
  margin-bottom: 3rem;
}
.work-container .work-year h2 {
  font-size: var(--font-size-h4);
  color: var(--secondary-text-color);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-weight: normal;
}
.work-container .work-year p {
  font-size: var(--font-size-small);
  color: var(--secondary-text-color);
  line-height: 1.5;
}
.work-container ul.project-list li.work-item {
  display: block;
  margin-bottom: 8px;
}
.work-container .text-right {
  text-align: left;
}
.work-container .value-arrow {
  width: 320px;
}
.work-container .value-arrow img {
  width: 100%;
  height: auto;
}
.work-container .value-arrow .arrow-dark {
  display: none;
}
.work-container .project-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.work-container .project-item {
  margin-bottom: 1rem;
}
.work-container .project-item a {
  display: block;
  padding: 1.5rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}
.work-container .project-item a:hover {
  background-color: var(--card-bg-color);
  transform: translateY(-2px);
  border-color: var(--border-color);
}
.work-container .project-item .project-title {
  display: block;
  font-size: var(--font-size-h5);
  color: var(--text-color);
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.work-container .project-item .project-description {
  font-size: var(--font-size-base);
  color: var(--secondary-text-color);
}
.work-container .work-item {
  display: flex;
  align-items: flex-start;
  gap: 2em;
  margin-bottom: 2em;
}
.work-container .work-item .work-thumb {
  flex: 0 0 33%;
  max-width: 33%;
}
.work-container .work-item .work-thumb img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.work-container .work-item .work-meta {
  flex: 1;
}
.work-container .work-item .work-excerpt {
  margin-top: 0.5em;
  color: #666;
}

html.dark .value-arrow .arrow-light {
  display: none;
}
html.dark .value-arrow .arrow-dark {
  display: block;
}

@media (max-width: 768px) {
  .values-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .values-container .value-content.text-right {
    text-align: left;
  }
  .values-container .value-arrow {
    transform: rotate(90deg);
    width: 40px;
    margin: 1rem auto;
  }
  .values-container .value-content.text-left {
    order: 1;
  }
  .values-container .value-arrow {
    order: 2;
  }
  .values-container .value-content.text-right {
    order: 3;
    margin-bottom: 2rem;
  }
  .values-header h2 {
    font-size: var(--font-size-h5);
  }
  .work-container .work-year h2 {
    font-size: var(--font-size-h5);
  }
  .work-container .project-item a {
    padding: 1rem;
  }
  .work-container .project-title {
    font-size: var(--font-size-h6);
  }
  .work-container .project-description {
    font-size: var(--font-size-small);
  }
  .work-container .work-item {
    flex-direction: column;
    gap: 1em;
  }
  .work-container .work-item .work-thumb,
  .work-container .work-item .work-thumb img {
    max-width: 100%;
  }
}
ul.blog-posts {
  list-style: none;
  padding: 0;
}

ul.blog-posts li {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: thin solid var(--border-color);
}

ul.blog-posts li a {
  text-decoration: none;
  color: var(--link-color);
}

ul.blog-posts li a:hover {
  text-decoration: underline;
}

/*
  Styles for the "Now" Page
*/
.now-page .now-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

/* Give the map container a visible size */
.locator-map {
  height: 350px;
  margin-top: 1.5rem;
  border-radius: 8px; /* Optional: gives the map rounded corners */
  overflow: hidden; /* Ensures the map stays within the rounded corners */
}

.media-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 2rem;
}

.media-item {
  display: flex;
  gap: 1rem;
}

.media-cover {
  width: 80px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.media-details {
  font-size: var(--font-size-sm);
}
.media-details strong {
  font-size: var(--font-size-base);
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
}
.media-details .media-type,
.media-details .media-rating,
.media-details .media-date {
  display: block;
  color: var(--secondary-text-color);
  margin-bottom: 0.25rem;
}
.media-details .media-blurb {
  margin-top: 0.5rem;
}

.text-highlight {
  color: var(--highlight-color);
}

.font-mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.text-meta {
  font-size: var(--font-size-meta);
  color: var(--secondary-text-color);
}

.card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
}

.experience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color, #e5e7eb);
}

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

.experience-details {
  text-align: left;
}

.experience-title {
  font-weight: 600;
  font-size: 1.125rem; /* Example size */
}

.experience-company {
  color: var(--text-color-muted, #6b7280);
  margin-top: 0.25rem;
}

.experience-period {
  text-align: right;
  white-space: nowrap;
  color: var(--text-color-muted, #6b7280);
  padding-left: 1rem; /* Ensure space between columns */
}/*# sourceMappingURL=main.css.map */