/*
 * Main Theme Stylesheet — Things To Do in San Diego
 * Modern, responsive, high-performance styling
 */

/* Container & Layout */
.site-content-area,
.sd-single-container,
.sd-archive-container,
.sd-404-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* Hero Section */
.sd-hero-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  padding: 3rem 0 2rem;
  border-bottom: 1px solid var(--color-border);
}

.sd-hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .sd-hero-container {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.sd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-badge-bg);
  color: var(--color-badge-text);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #2563eb;
  border-radius: 50%;
  display: inline-block;
}

.sd-hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: #0f172a;
}

.sd-hero-subtitle {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 620px;
}

.sd-author-byline {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.author-avatar {
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-secondary);
}

.author-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.sd-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pill, .filter-tab {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  color: #334155;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;
}

.hero-pill:hover, .filter-tab:hover {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--color-primary);
  text-decoration: none;
}

.filter-tab.is-active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}

.sd-hero-media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sd-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.sd-hero-media:hover .sd-hero-img {
  transform: scale(1.02);
}

/* Sections Common */
.sd-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.sd-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sd-section-eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.sd-section-title {
  margin-bottom: 0;
  color: var(--color-secondary);
}

.sd-section-link {
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* Cards Grid */
.sd-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .sd-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sd-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sd-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sd-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.sd-card-image-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: #f1f5f9;
}

.sd-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sd-card:hover .sd-card-img {
  transform: scale(1.05);
}

.sd-card-badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.sd-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sd-card-meta {
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.sd-card-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.sd-card-title a {
  color: var(--color-secondary);
  text-decoration: none;
}

.sd-card-title a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.sd-card-excerpt {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.sd-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.sd-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Audience Grid */
.sd-audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .sd-audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sd-audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.audience-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  text-decoration: none;
}

.audience-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.audience-icon {
  font-size: 2rem;
  margin-bottom: 0.875rem;
  display: inline-block;
}

.audience-title {
  font-size: 1.15rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.audience-desc {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Breadcrumbs */
.sd-breadcrumbs-nav {
  margin-bottom: 1.5rem;
}

.sd-breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.sd-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.sd-breadcrumb-separator {
  color: #94a3b8;
}

.sd-breadcrumb-current {
  color: #64748b;
  font-weight: 500;
}

/* Single Content Layout */
.sd-single-header {
  margin-bottom: 1.75rem;
}

.sd-single-badge {
  display: inline-block;
  background-color: var(--color-badge-bg);
  color: var(--color-badge-text);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.sd-single-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.sd-single-lead {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.6;
}

.sd-single-hero-media {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-md);
}

.sd-hero-media-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.sd-single-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .sd-single-layout {
    grid-template-columns: 1fr 340px;
  }
}

/* Practical Info Callout */
.sd-practical-card {
  background-color: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
}

.sd-practical-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--color-secondary);
}

.sd-practical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .sd-practical-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sd-practical-span2 {
    grid-column: 1 / -1;
  }
}

.sd-practical-item {
  display: flex;
  flex-direction: column;
}

.sd-practical-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin-bottom: 0.25rem;
}

.sd-practical-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-secondary);
}

/* Tip Box */
.sd-tip-box {
  background-color: #fefce8;
  border-left: 4px solid #eab308;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

.sd-tip-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.sd-tip-heading {
  font-size: 1rem;
  color: #854d0e;
  margin-bottom: 0.25rem;
}

.sd-tip-content p {
  margin: 0;
  color: #713f12;
  font-size: 0.9375rem;
}

/* Article Body Typography */
.sd-article-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #334155;
}

.sd-article-body p {
  margin-bottom: 1.5rem;
}

.sd-article-body h2 {
  font-size: 1.65rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.sd-article-body h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.sd-article-body ul, .sd-article-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.sd-article-body li {
  margin-bottom: 0.5rem;
}

/* Photo Gallery */
.sd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .sd-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sd-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.2s ease;
}

.sd-gallery-item img:hover {
  transform: scale(1.03);
}

/* FAQs Accordion */
.sd-faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.sd-faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}

.sd-faq-item[open] {
  border-color: #cbd5e1;
  box-shadow: var(--shadow-sm);
}

.sd-faq-question {
  padding: 1.15rem 1.25rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.sd-faq-question::-webkit-details-marker {
  display: none;
}

.sd-faq-question svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  color: #64748b;
}

.sd-faq-item[open] .sd-faq-question svg {
  transform: rotate(180deg);
}

.sd-faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: #475569;
  line-height: 1.65;
}

.sd-faq-answer p:last-child {
  margin-bottom: 0;
}

/* Sidebar Cards */
.sd-sidebar-card {
  background-color: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.sd-sidebar-title {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.sd-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sd-sidebar-links li {
  margin-bottom: 0.75rem;
}

.sd-sidebar-links a {
  color: #334155;
  font-weight: 500;
  font-size: 0.9375rem;
  display: block;
}

.sd-sidebar-links a:hover {
  color: var(--color-primary);
}

.sd-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.sd-cta-button:hover {
  background-color: var(--color-primary-dark);
  color: #ffffff;
  text-decoration: none;
}

/* Directory Filters */
.sd-directory-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 2.5rem;
}

/* Search Modal */
.sd-search-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 1rem 1rem;
}

.sd-search-modal[hidden] {
  display: none !important;
}

.sd-search-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
}

.sd-search-window {
  position: relative;
  width: 100%;
  max-width: 640px;
  background-color: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  overflow: hidden;
  z-index: 10;
}

.sd-search-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  gap: 0.75rem;
}

.sd-search-input {
  flex: 1;
  border: none;
  font-size: 1.125rem;
  font-family: inherit;
  outline: none;
  color: var(--color-secondary);
}

.sd-search-close-btn {
  background-color: #f1f5f9;
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  color: #64748b;
}

.sd-search-results-area {
  max-height: 420px;
  overflow-y: auto;
  padding: 1rem 1.25rem;
}

.sd-search-result-item {
  padding: 0.75rem;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  display: block;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.sd-search-result-item:hover {
  background-color: #f8fafc;
  text-decoration: none;
}

.sd-search-result-type {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
}

.sd-search-result-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin: 0.15rem 0;
}

.sd-search-result-snippet {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

/* 404 Page */
.sd-404-container {
  text-align: center;
  padding: 4rem 1rem;
}

.sd-404-eyebrow {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
}

.sd-404-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.5rem;
}

.sd-404-lead {
  max-width: 580px;
  margin: 1rem auto 2rem;
  color: #64748b;
}

.sd-404-search {
  max-width: 480px;
  margin: 0 auto 3rem;
}

/* Pagination */
.pagination, .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-numbers {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
}

.page-numbers.current {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* ==========================================================================
   Homepage & Full-Width Layout Engine
   ========================================================================== */
.sd-front-page-main {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.sd-front-page-inner {
  width: 100%;
}

.sd-single-fullwidth {
  max-width: 100% !important;
  padding: 0 !important;
}

.sd-single-fullwidth .sd-single-layout {
  grid-template-columns: 1fr !important;
  gap: 0 !important;
}

.sd-single-fullwidth .sd-single-sidebar {
  display: none !important;
}

/* Base utility fallbacks for Category Hub and Card grids */
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-8 { padding-top: 2rem; }
.pb-7 { padding-bottom: 1.75rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.border-2 { border-width: 2px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-emerald-50 { background-color: #ecfdf5; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-violet-50 { background-color: #f5f3ff; }
.bg-pink-50 { background-color: #fdf2f8; }
.bg-orange-50 { background-color: #fff7ed; }
.bg-indigo-50 { background-color: #eef2ff; }
.bg-amber-50 { background-color: #fffbeb; }
.border-slate-200 { border-color: #e2e8f0; }
.border-emerald-100 { border-color: #d1fae5; }
.border-blue-100 { border-color: #dbeafe; }
.border-violet-100 { border-color: #ede9fe; }
.border-pink-100 { border-color: #fce7f3; }
.border-orange-100 { border-color: #ffedd5; }
.border-indigo-100 { border-color: #e0e7ff; }
.border-amber-100 { border-color: #fef3c7; }
.text-slate-900 { color: #0f172a; }
.text-slate-800 { color: #1e293b; }
.text-slate-700 { color: #334155; }
.text-slate-600 { color: #475569; }
.text-slate-500 { color: #64748b; }
.text-slate-400 { color: #94a3b8; }
.text-blue-700 { color: #1d4ed8; }
.text-emerald-800 { color: #065f46; }
.text-violet-800 { color: #5b21b6; }
.text-pink-800 { color: #9d174d; }
.text-orange-800 { color: #9a3412; }
.text-amber-800 { color: #92400e; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:border-emerald-300:hover { border-color: #6ee7b7; }
.hover\:border-blue-300:hover { border-color: #93c5fd; }
.hover\:border-violet-300:hover { border-color: #c4b5fd; }
.hover\:border-pink-300:hover { border-color: #f9a8d4; }
.hover\:border-orange-300:hover { border-color: #fdba74; }
.hover\:border-indigo-300:hover { border-color: #a5b4fc; }
.hover\:border-amber-300:hover { border-color: #fcd34d; }

@media (min-width: 768px) {
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:h-\[600px\] { height: 600px; }
  .md\:h-96 { height: 24rem; }
  .md\:flex-row { flex-direction: row; }
}

.brightness-75 { filter: brightness(0.75); }
.drop-shadow-lg { filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1)); }
.drop-shadow-md { filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06)); }

