@import url("https://use.typekit.net/ldc8mkv.css");

/* Root Variables */
:root {
  --primary-color: #0F172A;
  --text-dark: #1A1A1A;
  --text-body: #524C48;
  --text-muted: #6B6763;
  --text-heading: #6B6B78;
  --accent-color: #CE3B62;
  --accent-hover: #932542;
  --border-color: #EBE7E3;
  --card-shadow: 4px 4px 0px 0px #000000;
}

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

html {
  font-size: 19rpx;
  scroll-behavior: smooth;
}

body {
  font-family: "adelle-sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 72px;
}

a {
  color: var(--accent-color);
  transition: color 0.2s ease;
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Header/Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  padding: 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.logo a {
  text-decoration: none;
  color: inherit;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:visited {
  color: var(--text-muted);
}

.nav a:hover {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav a.active,
.nav-item-label.active {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav a.hidden {
  display: none;
}

/* Portfolio dropdown */
.nav-item-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: default;
}

.nav-item-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2px;
  font-size: 0.7rem;
  color: var(--text-muted);
  line-height: 1;
}

.nav-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  min-width: 140px;
  z-index: 100;
  padding: 6px 0 4px;
}

.nav-item-group:hover .nav-submenu {
  display: block;
}

.nav-submenu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-submenu a:hover {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  background-color: var(--bg-color);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-end;
}

.hero-text {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-text h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--primary-color);
}

.hero-text .highlight {
  font-weight: 700;
}

.availability {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 0;
}

.availability strong {
  font-weight: 600;
  color: var(--text-dark);
}

.availability em {
  font-style: italic;
  font-weight: 400;
}

.profile-photo {
  width: 400px;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid #000000;
  box-shadow: var(--card-shadow);
}

/* Buttons & Links */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: "adelle-sans", sans-serif;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--text-dark);
  border: 1.5px solid #D1D5DB;
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-1px);
}

.link-primary {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--accent-color);
  transition: color 0.2s ease;
}

.link-primary:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Services Section */
.services {
  padding: 60px 0 20px;
  background-color: var(--bg-color);
}

.services-intro {
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--primary-color);
}

.services-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.services-list li {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-body);
  position: relative;
}

.services-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.service-label {
  color: var(--text-body);
}

.service-label strong {
  font-weight: 600;
  color: var(--text-dark);
}

/* Services Grid Section */
.services-grid {
  padding: 40px 0 80px;
  background-color: var(--bg-color);
}

.services-grid h2 {
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--primary-color);
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}

.service-card {
  padding: 0;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* Companies Section */
.companies {
  padding: 60px 0 80px;
  background-color: var(--bg-color);
}

.companies h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-heading);
  margin-bottom: 2.5rem;
  font-weight: 600;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.companies-carousel {
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.companies-grid {
  display: flex;
  align-items: center;
  transition: transform 0.4s ease;
}

.company-logo {
  min-width: 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.company-logo img {
  max-width: 300px;
  max-height: 90px;
  object-fit: contain;
}

.company-logo img.logo-large {
  max-width: 375px;
  max-height: 105px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background-color: var(--text-muted);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px);
}

.carousel-btn.prev::after {
  content: "←";
  color: #ffffff;
  font-size: 16px;
}

.carousel-btn.next::after {
  content: "→";
  color: #ffffff;
  font-size: 16px;
}

/* Testimonials Section */
.testimonials {
  background-color: #1A1A1A;
  padding: 80px 0;
}

.testimonials .container {
  max-width: 75%;
}

.testimonials h3 {
  font-size: 2rem;
  text-transform: none;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 3rem;
  font-weight: 400;
  text-align: left;
  padding-bottom: 0;
  border-bottom: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

.testimonial {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #ffffff;
}

.testimonial-author {
  font-size: 0.875rem;
  color: #999999;
  font-weight: 400;
  margin-bottom: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/* Blog Page */
.blog-title {
  text-align: center;
  font-size: 2.75rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
  color: var(--primary-color);
  letter-spacing: -0.03em;
}

.blog-posts {
  padding: 40px 0 80px;
}

.blog-posts .container {
  padding: 0 24px;
}

.blog-read-more {
  font-size: 1rem;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-read-more:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-posts-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 3rem;
}

.blog-card:last-child {
  border-bottom: none;
}

.blog-card-link {
  display: block;
  text-decoration: none;
}

.blog-card-image {
  border-radius: 12px;
  border: 1.5px solid #000;
  box-shadow: var(--card-shadow);
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-card-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.blog-card-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-card-title a:hover {
  text-decoration: none;
}

.blog-card-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* Writing Cards */
.writing-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  padding: 3rem 0 0;
}

.writing-posts {
  padding: 0 0 4rem;
}

.contributions-list a::after {
  content: " →";
}

/* About Page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: 3rem 0 4rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 10px;
}

.about-text p {
  margin-bottom: 1rem;
}

.about-text h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.about-text h2:first-child {
  margin-top: 0;
}

.writing-posts .container {
  max-width: 1500px;
}

.writing-client {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-align: center;
  margin: 1rem 0 1.5rem;
}

.writing-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.writing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.writing-card-link {
  display: block;
  text-decoration: none;
}

.writing-card-image {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.writing-card-title {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}

.writing-card-title a {
  color: inherit;
  text-decoration: none;
}

.writing-card-title a::after {
  content: " →";
}

.writing-card-title a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #1A1A1A;
  padding: 60px 60px 30px;
  border-top: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-text {
  flex: 1;
  display: flex;
  align-items: center;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 40px;
  height: 40px;
}

.footer-link svg {
  width: 24px;
  height: 24px;
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.footer-badge {
  height: 30px;
  object-fit: contain;
  display: block;
}

.footer-badges a {
  display: flex;
  align-items: center;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
  overflow: hidden;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .writing-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  body {
    padding-top: 72px;
  }

  .container {
    padding: 0 24px;
  }

  body {
    overflow-x: hidden;
  }

  .writing-title {
    padding-left: 24px;
    padding-right: 24px;
  }

  .logo {
    font-size: 2rem;
    white-space: nowrap;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 96px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
    z-index: 999;
  }

  .nav.active {
    max-height: 800px;
    visibility: visible;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav-item-group {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 0 20px;
  }

  .nav-item-group > a {
    flex: 1;
    border-bottom: none;
    padding: 12px 0;
  }

  .nav-item-label {
    padding: 12px 8px 12px 0;
    flex: none;
  }

  .nav-item-toggle {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--text-muted);
    border: none;
    background: none;
    cursor: pointer;
  }

  .nav-submenu {
    display: block;
    position: static;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-item-toggle[aria-expanded="true"] + .nav-submenu {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
  }

  .nav-submenu a {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-align: left;
  }

  .nav-submenu a:last-child {
    border-bottom: none;
  }

  .nav-submenu a:hover {
    background-color: rgba(206, 59, 98, 0.1);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .hero-text {
    height: auto;
    justify-content: flex-start;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
  }

  .profile-photo {
    width: 250px;
    height: 250px;
  }

  .companies-grid {
    gap: 20px;
  }

  .company-logo img {
    max-width: 100px;
    max-height: 50px;
  }

  .company-logo img.logo-large {
    max-width: 120px;
    max-height: 60px;
  }

  .testimonials .container {
    max-width: 100%;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }

  .availability {
    margin-top: 1.5rem;
  }

  .link-primary {
    margin-bottom: 1.5rem;
  }

  .footer-content {
    justify-content: center;
    gap: 20px;
  }

  .services-intro {
    font-size: 1.5rem;
  }

  .services-list li {
    font-size: 1rem;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .blog-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ================================================
   Blog Post Page
   ================================================ */

.blog-post {
  padding: 60px 0 100px;
}

.blog-post-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-post-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.blog-post-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--primary-color);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-post-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-post-body > * + * {
  margin-top: 1.5rem;
}

.blog-post-body p {
  color: var(--text-body);
}

.blog-post-body a {
  color: var(--accent-color);
  text-decoration: none;
}

.blog-post-body a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-post-body h2 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-top: 2.5rem;
}

.blog-post-body h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 2rem;
}

.blog-post-body h4 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-top: 1.5rem;
}

.blog-post-body img,
.blog-post-body video {
  width: 85%;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 2rem auto;
}

.blog-post-body ul,
.blog-post-body ol {
  padding-left: 1.5rem;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
}

.blog-post-body li + li {
  margin-top: 0.5rem;
}

.blog-post-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 1rem;
}

.blog-post-body table th {
  background-color: #ffffff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid #000000;
}

.blog-post-body table td {
  padding: 1rem;
  border: 1px solid #000000;
  color: var(--text-body);
  line-height: 1.6;
}

.callout {
  background-color: #1A1A1A;
  border-radius: 16px;
  padding: 28px 32px;
  color: #ffffff;
}

.callout p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .blog-post-title {
    font-size: 1.75rem;
  }

  .blog-post-body h2 {
    font-size: 1.35rem;
  }

  .blog-post-body h3 {
    font-size: 1.1rem;
  }

  .callout {
    padding: 20px 24px;
  }
}

@media (max-width: 768px) {
  .blog-post-title {
    font-size: 1.75rem;
  }

  .blog-post-body h2 {
    font-size: 1.35rem;
  }

  .blog-post-body h3 {
    font-size: 1.1rem;
  }

  .callout {
    padding: 20px 24px;
  }
}

/* Other Media Page */
.om-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 3rem 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.om-section-label {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  padding-top: 0.25rem;
}

.om-pdf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.om-pdf-title {
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}

.om-pdf-title a {
  color: var(--accent-color);
  text-decoration: none;
}

.om-pdf-title a:hover {
  color: #a52e4e;
  text-decoration: underline;
}

.om-pdf-title a::after {
  content: " →";
}

.om-pdf-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 0.4rem;
  line-height: 1.5;
}

.om-pdf-meta {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 0.2rem;
  line-height: 1.5;
}

.om-video-item {
  margin-bottom: 3rem;
}

.om-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 0.75rem;
}

.om-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.om-video-embed--linkedin {
  aspect-ratio: 504 / 962;
  max-width: 504px;
}

.om-video-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 0.3rem;
  line-height: 1.5;
}

/* Projects Page */
.dark-page {
  background-color: #1A1A1A;
  color: #ffffff;
}

.dark-page .writing-title {
  color: #ffffff;
}

.dark-page .om-section-label {
  color: #ffffff;
}

.dark-page .om-pdf-desc {
  color: #d1d1d1;
}

.dark-page .om-pdf-title a {
  color: #ffffff;
}

.dark-page .om-pdf-title a:hover {
  color: #CE3B62;
}

.projects-card {
  max-width: 400px;
}

.projects-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .om-section {
    grid-template-columns: 1fr;
    padding: 2rem 24px;
  }

  .om-pdf-grid {
    grid-template-columns: 1fr;
  }

  .om-video-embed--linkedin {
    max-width: 100%;
  }

  .projects-card {
    max-width: 100%;
  }
}
