/*!*************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ../../node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!../../node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************/
/* Go Naples — Design System */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --bg: #faf7f2;
  --bg-card: #fff;
  --text: #2b2118;
  --text-muted: #7a6e5f;
  --text-light: #a89c8c;
  --accent: #c8541e;
  --accent-hover: #a8421a;
  --accent-soft: #e8d5c8;
  --border: #e8e0d5;
  --border-strong: #d4c8b8;
  --shadow: 0 1px 3px rgba(43, 33, 24, 0.06);
  --shadow-lg: 0 4px 20px rgba(43, 33, 24, 0.08);
  --radius: 6px;
  --max-width: 1200px;
  --reading-width: 680px;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

img { max-width: 100%; height: auto; border-radius: var(--radius); }

/* Layout containers */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background: rgba(250, 247, 242, 0.92);
}
.site-header .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
}
.site-header .logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.site-header .logo a { color: inherit; }
.site-header .logo a:hover { color: var(--accent); }
.site-header nav ul {
  display: flex;
  list-style: none;
  gap: 1.75rem;
}
.site-header nav a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-header nav a:hover { color: var(--accent); }

/* Hero / featured article */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}
.hero-article {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hero-article:hover .hero-title { color: var(--accent); }
.hero-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}
.hero-category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  max-width: 800px;
  transition: color 0.15s;
}
.hero-excerpt {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 0.75rem;
}
.hero-meta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Article grid */
.article-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-gap: 2.5rem;
  gap: 2.5rem;
}
.grid-divider {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.grid-divider hr {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.card:hover .card-title { color: var(--accent); }
.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  background: var(--accent-soft);
}
.card-category {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.card-meta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Article page */
.article-page {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.article-header { margin-bottom: 2.5rem; }
.article-category {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.article-excerpt {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.article-meta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.article-meta time { font-weight: 500; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-light); }

.featured-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* Article content — WP HTML body */
.article-body {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text);
}
.article-body p { margin-bottom: 1.5rem; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.article-body img {
  border-radius: 8px;
  margin: 2rem auto;
  display: block;
  box-shadow: var(--shadow);
}
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.15rem;
}
.article-body ul, .article-body ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.article-body li { margin-bottom: 0.5rem; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--accent-hover); }
.article-body figure { margin: 2rem 0; }
.article-body figcaption {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
}
.article-body .wp-block-image { margin: 2rem 0; }
.article-body iframe { max-width: 100%; border-radius: 8px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.article-body th, .article-body td { border: 1px solid var(--border); padding: 0.5rem 0.75rem; }

/* Back link */
.back-link {
  display: inline-block;
  margin-top: 3rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--accent);
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent-soft);
  border-radius: 50px;
  transition: all 0.15s;
}
.back-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* 404 */
.not-found {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}
.not-found h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.not-found p { color: var(--text-muted); margin-bottom: 2rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-top: 2rem;
}
.site-footer .inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-footer .logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.site-footer p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
  body { font-size: 17px; }
  .article-grid { gap: 2rem; }
  .hero-title { font-size: 1.5rem; }
  .article-title { font-size: 1.75rem; }
  .site-header nav ul { gap: 1rem; }
  .site-header nav a { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .container, .hero, .article-grid { padding-left: 1rem; padding-right: 1rem; }
  .article-page { padding: 1.5rem 1rem 3rem; }
  .article-body { font-size: 1rem; }
  .article-grid { grid-template-columns: 1fr; }
}
