/*
Theme Name: starter starter starter
Theme URI: https://example.com/starter-starter-starter
Author: Davide "The Prof." Bertolino
Description: Tema WordPress leggero per landing page con Bootstrap 5. Mobile-first, sezioni illimitate, animazioni scroll, completamente personalizzabile.
Version: 2.0.0
License: GPL v2 or later
Text Domain: starter-starter-starter
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
*/

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --starter-primary: #2563eb;
  --starter-secondary: #0f172a;
  --starter-accent: #f59e0b;
  --starter-bg: #ffffff;
  --starter-bg-alt: #f8fafc;
  --starter-text: #1e293b;
  --starter-text-muted: #64748b;
  --starter-border: #e2e8f0;
  --starter-radius: 0.75rem;
  --starter-shadow: 0 4px 20px rgba(0,0,0,0.08);
  --starter-font: system-ui, -apple-system, sans-serif;
  --starter-font-heading: var(--starter-font);
  --starter-header-height: 70px;
  --starter-transition: 0.3s ease;
}

/* ========================================
   Base Overrides
   ======================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--starter-font);
  color: var(--starter-text);
  background: var(--starter-bg);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--starter-font-heading);
  font-weight: 700;
  color: var(--starter-secondary);
}

a {
  color: var(--starter-primary);
  text-decoration: none;
  transition: color var(--starter-transition);
}

a:hover {
  color: var(--starter-secondary);
}

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

/* ========================================
   Header
   ======================================== */
.starter-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: var(--starter-header-height);
  background: transparent;
  transition: background var(--starter-transition), box-shadow var(--starter-transition);
}

.starter-header.is-scrolled {
  background: var(--starter-bg);
  box-shadow: var(--starter-shadow);
}

.starter-header.starter-header--solid {
  background: var(--starter-bg);
  box-shadow: var(--starter-shadow);
}

.starter-header .navbar {
  height: var(--starter-header-height);
  padding: 0;
}

/* Logo */
.starter-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.starter-logo img {
  width: auto;
  transition: filter var(--starter-transition);
  filter: brightness(0) invert(1); /* Bianco su sfondo scuro */
}

.starter-header.is-scrolled .starter-logo img,
.starter-header.starter-header--solid .starter-logo img {
  filter: none; /* Colore originale su sfondo chiaro */
}

/* Se solo testo */
.starter-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--starter-transition);
}

.starter-header.is-scrolled .starter-logo-text {
  color: var(--starter-secondary);
}

.starter-header.starter-header--solid .starter-logo-text {
  color: var(--starter-secondary);
}

/* Nav Links */
.starter-header .nav-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color var(--starter-transition);
}

.starter-header .nav-link:hover {
  color: #fff;
}

.starter-header.is-scrolled .nav-link {
  color: var(--starter-text);
}

.starter-header.starter-header--solid .nav-link {
  color: var(--starter-text);
}

.starter-header.is-scrolled .nav-link:hover {
  color: var(--starter-primary);
}

.starter-header.starter-header--solid .nav-link:hover {
  color: var(--starter-primary);
}

/* Mobile Toggle */
.starter-header .navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.starter-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.starter-header.is-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 41, 59, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.starter-header.starter-header--solid .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830, 41, 59, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Menu */
@media (max-width: 991.98px) {
  .starter-header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--starter-bg);
    padding: 1rem;
    box-shadow: var(--starter-shadow);
  }
  
  .starter-header .navbar-collapse .nav-link {
    color: var(--starter-text);
    padding: 0.75rem 0 !important;
  }
}

/* ========================================
   Hero Section
   ======================================== */
.starter-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--starter-header-height) + 3rem) 0 4rem;
  background: linear-gradient(135deg, var(--starter-secondary) 0%, #1e3a5f 100%);
  color: #fff;
  overflow: hidden;
}

.starter-hero.has-bg-image {
  background-size: cover;
  background-position: center;
}

.starter-hero.has-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 58, 95, 0.75));
}

.starter-hero > .container {
  position: relative;
  z-index: 1;
}

.starter-hero__icon {
  width: 100px;
  height: 100px;
  border-radius: 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  margin-bottom: 1.5rem;
}

.starter-hero__title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.starter-hero__tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  font-weight: 300;
}

.starter-hero__description {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* ========================================
   Buttons
   ======================================== */
.btn-starter-primary {
  background: var(--starter-primary);
  border-color: var(--starter-primary);
  color: #fff;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: var(--starter-radius);
  transition: all var(--starter-transition);
}

.btn-starter-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-starter-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: var(--starter-radius);
  transition: all var(--starter-transition);
}

.btn-starter-outline:hover {
  background: #fff;
  border-color: #fff;
  color: var(--starter-secondary);
}

/* ========================================
   Sections
   ======================================== */
.starter-section {
  padding: 5rem 0;
}

.starter-section--light {
  background: var(--starter-bg);
}

.starter-section--alt {
  background: var(--starter-bg-alt);
}

.starter-section--dark {
  background: var(--starter-secondary);
  color: #fff;
}

.starter-section--dark h2,
.starter-section--dark h3 {
  color: #fff;
}

.starter-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.starter-section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.starter-section__subtitle {
  font-size: 1.125rem;
  color: var(--starter-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Footer
   ======================================== */
.starter-footer {
  background: var(--starter-secondary);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.starter-footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.starter-footer a {
  color: rgba(255,255,255,0.7);
}

.starter-footer a:hover {
  color: #fff;
}

.starter-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.starter-footer__logo img {
  filter: brightness(0) invert(1); /* Logo bianco nel footer */
}

.starter-footer__logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.starter-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.starter-footer li {
  margin-bottom: 0.5rem;
}

.starter-footer__brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
}

.starter-footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.starter-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all var(--starter-transition);
}

.starter-footer__social a:hover {
  background: var(--starter-primary);
  color: #fff;
}

.starter-footer__social svg {
  width: 18px;
  height: 18px;
}

.starter-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 0.875rem;
}

/* ========================================
   Scroll Animations
   ======================================== */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ========================================
   Homepage Section Cards
   ======================================== */
.starter-sections-grid {
  display: grid;
  gap: 2rem;
}

.starter-sections-grid--cols-1 {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.starter-sections-grid--cols-2 {
  grid-template-columns: 1fr;
}

.starter-sections-grid--cols-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .starter-sections-grid--cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .starter-sections-grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .starter-sections-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.starter-section-card {
  background: #fff;
  border-radius: var(--starter-radius);
  overflow: hidden;
  box-shadow: var(--starter-shadow);
  transition: transform var(--starter-transition), box-shadow var(--starter-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.starter-section-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.starter-section--dark .starter-section-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.starter-section-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.starter-section-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--starter-transition);
}

.starter-section-card:hover .starter-section-card__image img {
  transform: scale(1.05);
}

.starter-section-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.starter-section-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.starter-section-card__title a {
  color: var(--starter-secondary);
  text-decoration: none;
}

.starter-section-card__title a:hover {
  color: var(--starter-primary);
}

.starter-section--dark .starter-section-card__title,
.starter-section--dark .starter-section-card__title a {
  color: #fff;
}

.starter-section-card__text {
  color: var(--starter-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.starter-section--dark .starter-section-card__text {
  color: rgba(255,255,255,0.7);
}

.starter-section-card__link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--starter-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
}

.starter-section-card__link:hover {
  gap: 0.5rem;
}

/* ========================================
   CTA Section
   ======================================== */
.starter-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--starter-primary) 0%, #1d4ed8 100%);
  color: #fff;
}

.starter-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 1rem;
}

.starter-cta__text {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.starter-store-badge {
  display: inline-block;
  transition: transform var(--starter-transition), opacity var(--starter-transition);
}

.starter-store-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.starter-store-badge img {
  height: 50px;
  width: auto;
}

/* ========================================
   Utilities
   ======================================== */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ========================================
   Plugin Archive Hero
   ======================================== */
.starter-archive-hero {
  padding: calc(var(--starter-header-height) + 4rem) 0 3rem;
  background: linear-gradient(135deg, var(--starter-secondary) 0%, #1e3a5f 100%);
  color: #fff;
}

.starter-archive-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.starter-archive-hero__desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   Plugin Filters
   ======================================== */
.starter-plugin-filters {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--starter-border);
}

.starter-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--starter-text-muted);
  background: var(--starter-bg-alt);
  border: 1px solid transparent;
  transition: all var(--starter-transition);
  text-decoration: none;
}

.starter-filter-btn:hover {
  color: var(--starter-primary);
  border-color: var(--starter-primary);
  background: #fff;
}

.starter-filter-btn.is-active {
  background: var(--starter-primary);
  color: #fff;
}

.starter-filter-btn__count {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ========================================
   Plugin Grid
   ======================================== */
.starter-plugin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .starter-plugin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .starter-plugin-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================
   Plugin Card
   ======================================== */
.starter-plugin-card {
  background: #fff;
  border-radius: var(--starter-radius);
  border: 1px solid var(--starter-border);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--starter-transition), box-shadow var(--starter-transition);
}

.starter-plugin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--starter-shadow);
}

.starter-plugin-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.starter-plugin-card__icon {
  display: block;
}

.starter-plugin-card__icon img {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  object-fit: cover;
}

.starter-plugin-card__icon--placeholder {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: var(--starter-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--starter-text-muted);
}

.starter-plugin-card__version {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--starter-primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 1rem;
}

.starter-plugin-card__body {
  flex: 1;
}

.starter-plugin-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.starter-plugin-card__title a {
  color: var(--starter-secondary);
  text-decoration: none;
}

.starter-plugin-card__title a:hover {
  color: var(--starter-primary);
}

.starter-plugin-card__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}

.starter-plugin-card__cat {
  font-size: 0.75rem;
  color: var(--starter-text-muted);
  background: var(--starter-bg-alt);
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  text-decoration: none;
}

.starter-plugin-card__cat:hover {
  color: var(--starter-primary);
}

.starter-plugin-card__excerpt {
  font-size: 0.875rem;
  color: var(--starter-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.starter-plugin-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--starter-border);
  margin-top: auto;
}

.starter-plugin-card__meta {
  display: flex;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--starter-text-muted);
}

.starter-plugin-card__license {
  font-weight: 600;
}

.starter-plugin-card__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--starter-primary);
  text-decoration: none;
}

.starter-plugin-card__link:hover {
  color: var(--starter-secondary);
}

/* ========================================
   Single Plugin Hero
   ======================================== */
.starter-plugin-hero {
  padding: calc(var(--starter-header-height) + 3rem) 0 3rem;
  background: linear-gradient(135deg, var(--starter-secondary) 0%, #1e3a5f 100%);
  color: #fff;
}

.starter-plugin-hero__breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.6);
}

.starter-plugin-hero__breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.starter-plugin-hero__breadcrumb a:hover {
  color: #fff;
}

.starter-plugin-hero__sep {
  margin: 0 0.5rem;
}

.starter-plugin-hero__icon {
  flex-shrink: 0;
}

.starter-plugin-hero__icon img {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.starter-plugin-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.25rem;
}

.starter-plugin-hero__version {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
}

.starter-plugin-hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.starter-plugin-hero__cats a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
  text-decoration: none;
}

.starter-plugin-hero__cats a:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.starter-plugin-hero__excerpt {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
}

.starter-plugin-hero .btn-starter-outline {
  border-color: rgba(255,255,255,0.3);
}

/* ========================================
   Single Plugin Content
   ======================================== */
.starter-plugin-content {
  background: #fff;
  border-radius: var(--starter-radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.starter-plugin-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.starter-plugin-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.starter-plugin-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.starter-plugin-content pre {
  background: var(--starter-secondary);
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.starter-plugin-content code {
  font-size: 0.875em;
  background: var(--starter-bg-alt);
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
}

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

.starter-plugin-content img {
  border-radius: 0.5rem;
  margin: 1rem 0;
}

/* ========================================
   Plugin Changelog
   ======================================== */
.starter-plugin-changelog {
  background: #fff;
  border-radius: var(--starter-radius);
  padding: 2rem;
}

.starter-plugin-changelog h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.starter-plugin-changelog__version {
  border-bottom: 1px solid var(--starter-border);
}

.starter-plugin-changelog__version:last-child {
  border-bottom: none;
}

.starter-plugin-changelog__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.starter-plugin-changelog__toggle svg {
  transition: transform var(--starter-transition);
  color: var(--starter-text-muted);
  flex-shrink: 0;
}

.starter-plugin-changelog__version.is-open .starter-plugin-changelog__toggle svg {
  transform: rotate(180deg);
}

.starter-plugin-changelog__ver {
  font-size: 1rem;
  font-weight: 700;
  color: var(--starter-secondary);
}

.starter-plugin-changelog__body {
  padding-bottom: 1rem;
}

.starter-plugin-changelog__body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.starter-plugin-changelog__body li {
  padding: 0.375rem 0 0.375rem 1.25rem;
  position: relative;
  font-size: 0.9375rem;
  color: var(--starter-text-muted);
}

.starter-plugin-changelog__body li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--starter-primary);
  font-weight: 700;
}

/* ========================================
   Plugin Sidebar
   ======================================== */
.starter-plugin-sidebar {
  background: #fff;
  border-radius: var(--starter-radius);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--starter-header-height) + 2rem);
}

.starter-plugin-sidebar__title {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--starter-border);
}

.starter-plugin-sidebar__list {
  margin-bottom: 1.5rem;
}

.starter-plugin-sidebar__list dt {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--starter-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.15rem;
}

.starter-plugin-sidebar__list dd {
  font-size: 0.9375rem;
  color: var(--starter-secondary);
  margin-bottom: 1rem;
  margin-left: 0;
}

/* ========================================
   Single Post Hero
   ======================================== */
.starter-post-hero {
  padding: calc(var(--starter-header-height) + 4rem) 0 3rem;
  background: linear-gradient(135deg, var(--starter-secondary) 0%, #1e3a5f 100%);
  color: #fff;
}

.starter-post-hero__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.starter-post-hero__cats a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--starter-accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.starter-post-hero__cats a:hover {
  color: #fff;
}

.starter-post-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.starter-post-hero__excerpt {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.starter-post-hero__meta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.starter-post-hero__sep {
  margin: 0 0.5rem;
}

/* ========================================
   Post Featured Image
   ======================================== */
.starter-post-thumbnail {
  margin-top: -2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.starter-post-thumbnail__img {
  border-radius: var(--starter-radius);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  width: 100%;
  height: auto;
}

/* ========================================
   Post Content
   ======================================== */
.starter-post-content {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.starter-post-content h2 {
  font-size: 1.625rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.starter-post-content h3 {
  font-size: 1.375rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.starter-post-content h4 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.starter-post-content p {
  margin-bottom: 1.25rem;
}

.starter-post-content blockquote {
  border-left: 4px solid var(--starter-primary);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--starter-bg-alt);
  border-radius: 0 var(--starter-radius) var(--starter-radius) 0;
  font-style: italic;
  color: var(--starter-text-muted);
}

.starter-post-content pre {
  background: var(--starter-secondary);
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.starter-post-content code {
  font-size: 0.875em;
  background: var(--starter-bg-alt);
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
}

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

.starter-post-content img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.starter-post-content ul,
.starter-post-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.starter-post-content li {
  margin-bottom: 0.375rem;
}

/* ========================================
   Post Tags
   ======================================== */
.starter-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--starter-border);
}

.starter-post-tag {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--starter-text-muted);
  background: var(--starter-bg-alt);
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  text-decoration: none;
  transition: all var(--starter-transition);
}

.starter-post-tag:hover {
  color: var(--starter-primary);
  background: rgba(37, 99, 235, 0.08);
}

/* ========================================
   Post Navigation
   ======================================== */
.starter-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--starter-border);
}

@media (max-width: 575.98px) {
  .starter-post-nav {
    grid-template-columns: 1fr;
  }
}

.starter-post-nav__item {
  display: block;
  padding: 1.25rem;
  background: var(--starter-bg-alt);
  border-radius: var(--starter-radius);
  text-decoration: none;
  transition: all var(--starter-transition);
}

.starter-post-nav__item:hover {
  background: #fff;
  box-shadow: var(--starter-shadow);
  transform: translateY(-2px);
}

.starter-post-nav__next {
  text-align: right;
}

.starter-post-nav__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--starter-text-muted);
  margin-bottom: 0.375rem;
}

.starter-post-nav__title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--starter-secondary);
  line-height: 1.4;
}

/* ========================================
   Breadcrumbs
   ======================================== */
.starter-breadcrumb {
  background: var(--starter-bg-alt);
  border-bottom: 1px solid var(--starter-border);
  padding: 0.75rem 0;
}

.starter-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
}

.starter-breadcrumb__item {
  display: flex;
  align-items: center;
  color: var(--starter-text-muted);
}

.starter-breadcrumb__item:not(:last-child)::after {
  content: '›';
  margin: 0 0.5rem;
  color: var(--starter-border);
  font-size: 1rem;
}

.starter-breadcrumb__item a {
  color: var(--starter-text-muted);
  text-decoration: none;
  transition: color var(--starter-transition);
}

.starter-breadcrumb__item a:hover {
  color: var(--starter-primary);
}

.starter-breadcrumb__item.is-current span {
  color: var(--starter-secondary);
  font-weight: 500;
}

/* ========================================
   Map
   ======================================== */
.starter-map {
  border-radius: var(--starter-radius);
  overflow: hidden;
  box-shadow: var(--starter-shadow);
}

.starter-map iframe {
  display: block;
}

.starter-map-header {
  margin-bottom: 1rem;
  text-align: center;
}

.starter-map-name {
  display: block;
  font-size: 1.25rem;
  color: var(--starter-secondary);
}

.starter-map-address {
  display: block;
  color: var(--starter-text-muted);
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}

/* ========================================
   Blog Single (simple version)
   ======================================== */
.starter-post-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--starter-border);
}

.starter-post-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.starter-post-meta {
  color: var(--starter-text-muted);
  font-size: 0.9375rem;
  margin-top: 0.75rem;
}

.starter-post-thumbnail {
  margin-bottom: 2rem;
}

.starter-post-content {
  line-height: 1.8;
}

.starter-post-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.starter-post-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.starter-post-content p {
  margin-bottom: 1.25rem;
}

.starter-post-content blockquote {
  border-left: 4px solid var(--starter-primary);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--starter-bg-alt);
  border-radius: 0 var(--starter-radius) var(--starter-radius) 0;
  font-style: italic;
  color: var(--starter-text-muted);
}

.starter-post-content pre {
  background: var(--starter-secondary);
  color: #e2e8f0;
  padding: 1.25rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.starter-post-content code {
  font-size: 0.875em;
  background: var(--starter-bg-alt);
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
}

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

.starter-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--starter-border);
}

@media (max-width: 575.98px) {
  .starter-post-nav {
    grid-template-columns: 1fr;
  }
}

.starter-post-nav__prev,
.starter-post-nav__next {
  padding: 1rem;
  background: var(--starter-bg-alt);
  border-radius: var(--starter-radius);
}

.starter-post-nav__next {
  text-align: right;
}

.starter-post-nav__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--starter-text-muted);
  margin-bottom: 0.25rem;
}

.starter-post-nav__title {
  font-weight: 600;
  color: var(--starter-secondary);
  text-decoration: none;
}

.starter-post-nav__title:hover {
  color: var(--starter-primary);
}

/* ========================================
   Comments
   ======================================== */
.starter-comments {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--starter-border);
}

.starter-comments__title {
  margin-bottom: 1.5rem;
}

.starter-comments__list {
  list-style: none;
  padding: 0;
}

.starter-comments__list .comment {
  padding: 1rem 0;
  border-bottom: 1px solid var(--starter-border);
}
