/* Basic site styles for Dating CMS */
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; margin: 0; padding: 0; }
header { background: #f5f5f5; padding: 12px 16px; border-bottom: 1px solid #e5e5e5; }
header h1 { margin: 0; font-size: 1.25rem; }
nav a { margin-right: 10px; color: #333; text-decoration: none; }
main { padding: 16px; }
footer { margin-top: 24px; padding: 12px 16px; border-top: 1px solid #e5e5e5; color: #666; }
.admin-card { padding: 10px; border: 1px solid #eee; border-radius: 6px; margin: 10px 0; background: #fafafa; }
/* Toast styles moved to toast.css */
/* Brand */
.site-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.site-logo { width: 28px; height: 28px; display: block; }
.site-name { font-weight: 600; color: #333; }
nav .site-brand:hover .site-name { text-decoration: underline; }

/* Navigation */
.main-nav { display: flex; gap: 12px; align-items: center; }
.main-nav a { padding: 6px 8px; border-radius: 6px; }
.main-nav a[aria-current="page"] { font-weight: 600; color: #111; background: #e9f2ff; }
.status-indicator { display:inline-block; width:8px; height:8px; border-radius:50%; margin-right:6px; vertical-align:middle; }
.status-indicator-info { background:#3b82f6; }
.status-indicator-success { background:#16a34a; }
.status-indicator-warn { background:#d97706; }
.status-indicator-error { background:#dc2626; }
/* Hero */
.hero { background: linear-gradient(180deg, #fff 0%, #f8fbff 100%); border: 1px solid #e5eefb; border-radius: 12px; padding: 24px; text-align: center; margin-bottom: 24px; }
.hero-logo { width: 80px; height: 80px; display: inline-block; margin-bottom: 12px; }
.hero h2 { margin: 8px 0 6px; font-size: 1.6rem; }
.hero p { margin: 0 0 12px; color: #555; }
.hero-ctas { display: inline-flex; gap: 10px; }

/* Buttons */
.btn { display: inline-block; text-decoration: none; border-radius: 8px; padding: 10px 14px; font-weight: 600; }
.btn-primary { background: #2563eb; color: #fff; }
.btn-primary:hover { background: #1e4fd0; }
.btn-secondary { background: #eef2ff; color: #1f2937; }
.btn-secondary:hover { background: #e1e7ff; }
.btn-danger { background: #fee2e2; color: #b91c1c; }
.btn-danger:hover { background: #fecaca; }
.btn-icon { padding: 4px; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }

/* Home cards */
.home-card { padding: 12px; border: 1px solid #eee; border-radius: 8px; background: #fafafa; }
.profile-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.profile-card { border: 1px solid #eee; border-radius: 8px; padding: 12px; background: #fff; }
.profile-card h4 { margin: 0 0 6px; font-size: 1.1rem; }
.profile-card p { margin: 0; color: #666; }
/* Profile avatars and actions */
.profile-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; display: block; margin-bottom: 8px; box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.profile-card-actions { margin-top: 12px; }

/* Announcement banner */
.announcement-bar { display: flex; padding: 10px 12px; border: 1px solid; border-radius: 8px; margin: 0 16px 16px; gap: 8px; align-items: center; justify-content: space-between; }
.announcement-bar strong { font-weight: 600; margin-right: 6px; }
.announcement-close { background: transparent; border: 0; color: inherit; cursor: pointer; font-size: 20px; line-height: 1; padding: 0 4px; }

/* Severity variants */
.announcement-info { border-color: #93c5fd; background: #eff6ff; color: #1e40af; }
.announcement-success { border-color: #86efac; background: #f0fdf4; color: #166534; }
.announcement-warn { border-color: #f59e0b; background: #fff7ed; color: #7c2d12; }
.announcement-error { border-color: #fca5a5; background: #fee2e2; color: #7f1d1d; }/* Announcement containers */
.announcement-stack { display: grid; gap: 8px; margin: 0 16px 16px; }
.announcement-stack .announcement-bar { margin: 0; }
.announcement-rotator { margin: 0 16px 16px; }
.announcement-rotator .announcement-bar { margin: 0; }
/* Rotator controls */
.announcement-rotator-controls { display: flex; gap: 6px; margin: 6px 16px 16px; justify-content: flex-end; }
.btn-compact { padding: 6px 10px; border-radius: 6px; }
/* Admin announcements builder */
.ann-builder-item { border: 1px dashed #ddd; border-radius: 8px; padding: 8px; background: #fff; }
.ann-builder-actions { display: flex; gap: 8px; margin-top: 8px; }
.ann-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 8px; }
.ann-builder-item textarea, .ann-builder-item input, .ann-builder-item select { width: 100%; box-sizing: border-box; }

/* Status badge styles */
.badge { display:inline-block; padding:.15rem .5rem; border-radius:999px; font-size:.75rem; font-weight:600; line-height:1; }
.badge:focus-visible { outline: none; box-shadow: 0 0 0 2px currentColor; }
.badge-info { background:#e8f0fe; color:#2a59c4; }
.badge-success { background:#dff5e3; color:#1b5e20; }
.badge-warn { background:#fff6e5; color:#996b00; }
.badge-error { background:#fde8e8; color:#b00020; }

/* Badge tooltip (CSS-only) */
.badge.has-tooltip { position: relative; cursor: help; }
.badge.has-tooltip .badge-tooltip { position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%); background:#111; color:#fff; padding:.5rem .6rem; border-radius:6px; font-size:.75rem; line-height:1.2; white-space: normal; max-width:320px; box-shadow:0 6px 20px rgba(0,0,0,.2); opacity:0; pointer-events:none; transition: opacity .18s ease, transform .20s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
.badge.has-tooltip:hover .badge-tooltip, .badge.has-tooltip.open .badge-tooltip { opacity:1; transform: translateX(-50%) translateY(-2px); pointer-events:auto; }
.badge.has-tooltip:focus-visible .badge-tooltip { opacity:1; transform: translateX(-50%) translateY(-2px); pointer-events:auto; }
.badge.has-tooltip .badge-tooltip::after { content:''; position:absolute; top:100%; left:50%; transform:translateX(-50%); border:6px solid transparent; border-top-color:#111; }
.badge-tooltip-date { font-weight:600; opacity:.85; margin-bottom:.25rem; }
.badge-tooltip-text { display:block; }

/* Severity-specific tooltip bubble colors */
.badge-success.has-tooltip .badge-tooltip { background:#2d7d46; color:#fff; }
.badge-success.has-tooltip .badge-tooltip::after { border-top-color:#2d7d46; }

.badge-warn.has-tooltip .badge-tooltip { background:#996b00; color:#fff; }
.badge-warn.has-tooltip .badge-tooltip::after { border-top-color:#996b00; }

.badge-error.has-tooltip .badge-tooltip { background:#b00020; color:#fff; }
.badge-error.has-tooltip .badge-tooltip::after { border-top-color:#b00020; }

.badge-info.has-tooltip .badge-tooltip { background:#2a59c4; color:#fff; }
.badge-info.has-tooltip .badge-tooltip::after { border-top-color:#2a59c4; }

/* Nav status indicator tooltip */
.status-indicator.has-tooltip { position: relative; }
.status-indicator.has-tooltip .badge-tooltip { position: absolute; left:50%; bottom: calc(100% + 8px); transform: translateX(-50%); background:#111; color:#fff; padding:.45rem .55rem; border-radius:6px; font-size:.75rem; line-height:1.2; white-space: normal; max-width:320px; box-shadow:0 6px 20px rgba(0,0,0,.2); opacity:0; pointer-events:none; transition: opacity .18s ease, transform .20s cubic-bezier(0.22, 1, 0.36, 1); will-change: opacity, transform; }
.status-indicator.has-tooltip:hover .badge-tooltip, .status-indicator.has-tooltip.open .badge-tooltip { opacity:1; transform: translateX(-50%) translateY(-2px); pointer-events:auto; }
.status-indicator.has-tooltip:focus-visible .badge-tooltip { opacity:1; transform: translateX(-50%) translateY(-2px); pointer-events:auto; }
.status-indicator.has-tooltip .badge-tooltip::after { content:''; position:absolute; top:100%; left:50%; transform:translateX(-50%); border:6px solid transparent; border-top-color:#111; }
/* Severity colors for nav tooltip */
.status-indicator-success.has-tooltip .badge-tooltip { background:#2d7d46; color:#fff; }
.status-indicator-success.has-tooltip .badge-tooltip::after { border-top-color:#2d7d46; }
.status-indicator-warn.has-tooltip .badge-tooltip { background:#996b00; color:#fff; }
.status-indicator-warn.has-tooltip .badge-tooltip::after { border-top-color:#996b00; }
.status-indicator-error.has-tooltip .badge-tooltip { background:#b00020; color:#fff; }
.status-indicator-error.has-tooltip .badge-tooltip::after { border-top-color:#b00020; }
.status-indicator-info.has-tooltip .badge-tooltip { background:#2a59c4; color:#fff; }
.status-indicator-info.has-tooltip .badge-tooltip::after { border-top-color:#2a59c4; }

/* Responsive placement: narrow screens */
@media (max-width: 600px) {
  .badge.has-tooltip .badge-tooltip,
  .status-indicator.has-tooltip .badge-tooltip {
    position: fixed;
    top: 10px;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
    max-width: calc(100vw - 24px);
    z-index: 1000;
  }
  .badge.has-tooltip .badge-tooltip::after,
  .status-indicator.has-tooltip .badge-tooltip::after { display: none; }
}

/* Top-center placement class for long text or overflow */
.badge.has-tooltip.tooltip-top-center .badge-tooltip,
.status-indicator.has-tooltip.tooltip-top-center .badge-tooltip {
  position: fixed;
  top: 12px;
  left: 50%;
  bottom: auto;
  transform: translateX(-50%);
  max-width: min(92vw, 480px);
  z-index: 1000;
}
.badge.has-tooltip.tooltip-top-center .badge-tooltip::after,
.status-indicator.has-tooltip.tooltip-top-center .badge-tooltip::after { display: none; }

/* Smooth animation for top-center placement */
.badge.has-tooltip.tooltip-top-center .badge-tooltip,
.status-indicator.has-tooltip.tooltip-top-center .badge-tooltip {
  transition: opacity .18s ease, transform .28s cubic-bezier(0.22, 1, 0.36, 1);
}
.badge.has-tooltip.tooltip-top-center .badge-tooltip { transform: translateX(-50%) translateY(-8px) scale(.98); }
.badge.has-tooltip.tooltip-top-center:hover .badge-tooltip,
.badge.has-tooltip.tooltip-top-center.open .badge-tooltip { transform: translateX(-50%) translateY(0) scale(1); }
.status-indicator.has-tooltip.tooltip-top-center .badge-tooltip { transform: translateX(-50%) translateY(-8px) scale(.98); }
.status-indicator.has-tooltip.tooltip-top-center:hover .badge-tooltip,
.status-indicator.has-tooltip.tooltip-top-center.open .badge-tooltip { transform: translateX(-50%) translateY(0) scale(1); }
/* Tooltip actions and link styling */
.badge-tooltip-actions { margin-top: .4rem; }
.badge-tooltip-link {
  background: none;
  border: 0;
  padding: 0;
  color: #fff;
  text-decoration: underline;
  font: inherit;
  cursor: pointer;
}
.badge-tooltip-link:hover, .badge-tooltip-link:focus { text-decoration: none; outline: none; }
.badge-tooltip-link:focus-visible { outline: 2px solid rgba(255,255,255,0.6); outline-offset: 2px; border-radius: 3px; }

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .badge.has-tooltip .badge-tooltip,
  .status-indicator.has-tooltip .badge-tooltip {
    transition: none !important;
    transform: none !important;
  }
  .badge.has-tooltip:hover .badge-tooltip,
  .badge.has-tooltip.open .badge-tooltip,
  .status-indicator.has-tooltip:hover .badge-tooltip,
  .status-indicator.has-tooltip.open .badge-tooltip {
    transform: none !important;
  }
}

/* Keyboard-only skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 16px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #2563eb;
  color: #fff;
  border-radius: 6px;
  z-index: 1000;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85);
}
.using-pointer .skip-link:focus {
  left: -999px; /* ensure hidden when using mouse/touch */
}
.status-indicator.has-tooltip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.65);
  border-radius: 50%;
}

/* Home color accents */
.home-accent {
  background-image: radial-gradient(800px 280px at 50% -120px, #e6f0ff 0%, rgba(230,240,255,0) 70%), linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  background-attachment: fixed, fixed;
}
.home-accent .hero {
  background: linear-gradient(135deg, #e6f0ff 0%, #f0f7ff 45%, #fde7f2 100%);
  border-color: #dbeafe;
}
.home-accent .home-card,
.home-accent .profile-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: #e5eefb;
}

/* Home header tint */
.home-page header {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%); border-bottom-color: #dbeafe; }
.blog-index h1 { margin: 0 0 12px; }

/* Breadcrumb */
.admin-breadcrumb { font-size: .9rem; color: #555; margin: 0 0 12px; }
.admin-breadcrumb a { color: #1f2937; text-decoration: none; }
.admin-breadcrumb a:hover { text-decoration: underline; }
.admin-breadcrumb span[aria-hidden="true"] { margin: 0 6px; color: #999; }

/* Blog index cards */
.post-list { list-style: none; padding: 0; margin: 12px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.post-item { border: 1px solid #eee; border-radius: 8px; padding: 12px; background: #fff; }
.post-link { font-weight: 600; color: #1f2937; text-decoration: none; display: inline-block; margin-bottom: 6px; }
.post-link:hover { text-decoration: underline; }
 .post-excerpt { color: #555; margin: 0; }

/* Featured badge */
.post-badge { display: inline-block; margin: 0 0 6px; }

/* Blog index thumbnails */
.post-item-inner { display: flex; gap: 10px; align-items: flex-start; }
.post-thumb-link { display: inline-block; position: relative; }
.post-thumb { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.post-entry { flex: 1; min-width: 0; }
 .post-thumb-badge { position: absolute; top: 6px; left: 6px; z-index: 1; box-shadow: 0 3px 10px rgba(0,0,0,.2); pointer-events: none; background-color: rgba(33, 150, 83, 0.9); padding: .2rem .55rem; font-weight: 600; text-shadow: 0 1px 0 rgba(0,0,0,.15); }
  @supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) { .post-thumb-badge { backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); } }
 @media (forced-colors: active) { .post-thumb-badge { background-color: ButtonFace; color: ButtonText; box-shadow: none; text-shadow: none; } }
  @media (prefers-reduced-transparency: reduce) { .post-thumb-badge { backdrop-filter: none; -webkit-backdrop-filter: none; } }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .badge.caps { text-transform: uppercase; letter-spacing: .02em; }
@media (max-width: 600px) { .badge.caps { letter-spacing: .015em; } }
 @media (forced-colors: active) { .badge.caps { letter-spacing: normal; text-transform: none; } .badge:focus-visible { outline: 2px solid ButtonText; outline-offset: 2px; } }
 @media (prefers-contrast: more) { .badge { box-shadow: 0 0 0 2px currentColor; } .post-thumb-badge { box-shadow: 0 0 0 2px rgba(255,255,255,.65), 0 3px 12px rgba(0,0,0,.35); } }
@media (max-width: 600px) { .post-thumb { width: 64px; height: 64px; } .post-thumb-badge { padding: .25rem .6rem; font-weight: 700; } }


@media (max-width: 600px) {
  .post-list { grid-template-columns: 1fr; }
  .blog-post { padding: 0 8px; }
}

/* Mobile tweak: compact breadcrumb on small screens */
@media (max-width: 600px) {
  .admin-breadcrumb { font-size: .85rem; letter-spacing: .1px; line-height: 1.25; }
  .admin-breadcrumb.mt-mobile-top { margin-top: 10px; }
  .admin-breadcrumb.mt-mobile-top-sm { margin-top: 6px; }
  .admin-breadcrumb.mt-mobile-top-lg { margin-top: 16px; }
  .admin-breadcrumb span[aria-hidden="true"] { margin: 0 4px; }
}

/* Keyboard focus ring for interactive controls (brand) */
.btn:focus-visible,
.btn-icon:focus-visible,
.compact-list a:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Enhance small circular icon focus target */
.btn-icon:focus-visible {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.25);
  border-radius: 50%;
}

/* High contrast / forced colors support */
@media (forced-colors: active) {
  .btn:focus-visible,
  .btn-icon:focus-visible,
  .compact-list a:focus-visible {
    outline: 2px solid ButtonText;
    outline-offset: 2px;
  }
}
.using-pointer .skip-link:focus {
  left: -999px; /* ensure hidden when using mouse/touch */
}
.status-indicator.has-tooltip:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.65);
  border-radius: 50%;
}

/* Home color accents */
.home-accent {
  background-image: radial-gradient(800px 280px at 50% -120px, #e6f0ff 0%, rgba(230,240,255,0) 70%), linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  background-attachment: fixed, fixed;
}
.home-accent .hero {
  background: linear-gradient(135deg, #e6f0ff 0%, #f0f7ff 45%, #fde7f2 100%);
  border-color: #dbeafe;
}
.home-accent .home-card,
.home-accent .profile-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: #e5eefb;
}

/* Home header tint */
.home-page header {
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%); border-bottom-color: #dbeafe; }
.blog-index h1 { margin: 0 0 12px; }

/* Breadcrumb */
.admin-breadcrumb { font-size: .9rem; color: #555; margin: 0 0 12px; }
.admin-breadcrumb a { color: #1f2937; text-decoration: none; }
.admin-breadcrumb a:hover { text-decoration: underline; }
.admin-breadcrumb span[aria-hidden="true"] { margin: 0 6px; color: #999; }

/* Blog index cards */
.post-list { list-style: none; padding: 0; margin: 12px 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.post-item { border: 1px solid #eee; border-radius: 8px; padding: 12px; background: #fff; }
.post-link { font-weight: 600; color: #1f2937; text-decoration: none; display: inline-block; margin-bottom: 6px; }
.post-link:hover { text-decoration: underline; }
 .post-excerpt { color: #555; margin: 0; }

/* Featured badge */
.post-badge { display: inline-block; margin: 0 0 6px; }

/* Blog index thumbnails */
.post-item-inner { display: flex; gap: 10px; align-items: flex-start; }
.post-thumb-link { display: inline-block; position: relative; }
.post-thumb { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.post-entry { flex: 1; min-width: 0; }
 .post-thumb-badge { position: absolute; top: 6px; left: 6px; z-index: 1; box-shadow: 0 3px 10px rgba(0,0,0,.2); pointer-events: none; background-color: rgba(33, 150, 83, 0.9); padding: .2rem .55rem; font-weight: 600; text-shadow: 0 1px 0 rgba(0,0,0,.15); }
  @supports ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) { .post-thumb-badge { backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); } }
 @media (forced-colors: active) { .post-thumb-badge { background-color: ButtonFace; color: ButtonText; box-shadow: none; text-shadow: none; } }
  @media (prefers-reduced-transparency: reduce) { .post-thumb-badge { backdrop-filter: none; -webkit-backdrop-filter: none; } }
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .badge.caps { text-transform: uppercase; letter-spacing: .02em; }
@media (max-width: 600px) { .badge.caps { letter-spacing: .015em; } }
 @media (forced-colors: active) { .badge.caps { letter-spacing: normal; text-transform: none; } .badge:focus-visible { outline: 2px solid ButtonText; outline-offset: 2px; } }
 @media (prefers-contrast: more) { .badge { box-shadow: 0 0 0 2px currentColor; } .post-thumb-badge { box-shadow: 0 0 0 2px rgba(255,255,255,.65), 0 3px 12px rgba(0,0,0,.35); } }
@media (max-width: 600px) { .post-thumb { width: 64px; height: 64px; } .post-thumb-badge { padding: .25rem .6rem; font-weight: 700; } }


@media (max-width: 600px) {
  .post-list { grid-template-columns: 1fr; }
  .blog-post { padding: 0 8px; }
}

/* Mobile tweak: compact breadcrumb on small screens */
@media (max-width: 600px) {
  .admin-breadcrumb { font-size: .85rem; letter-spacing: .1px; line-height: 1.25; }
  .admin-breadcrumb.mt-mobile-top { margin-top: 10px; }
  .admin-breadcrumb.mt-mobile-top-sm { margin-top: 6px; }
  .admin-breadcrumb.mt-mobile-top-lg { margin-top: 16px; }
  .admin-breadcrumb span[aria-hidden="true"] { margin: 0 4px; }
}

/* Keyboard focus outline for site nav */
.main-nav a:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Hide nav outlines when using pointer (mouse/touch) */
.using-pointer .main-nav a:focus-visible,
.using-pointer .main-nav a:focus {
  outline: none;
}

/* Hero typography and CTAs */
.home-accent .hero { padding: 32px; }
.home-accent .hero h2 { font-size: 2rem; letter-spacing: .2px; }
.hero-eyebrow { display:inline-block; padding:4px 8px; border-radius:999px; font-size:.75rem; font-weight:600; color:#1e40af; background:#eff6ff; border:1px solid #93c5fd; }
.home-accent .hero .btn { padding: 12px 16px; border-radius: 10px; }
.home-accent .hero .btn-primary { box-shadow: 0 8px 24px rgba(37,99,235,0.25); }
.home-accent .hero .btn-primary:hover { box-shadow: 0 10px 28px rgba(37,99,235,0.35); }
.home-accent .hero .btn-secondary { background: #f4f7ff; }

/* Highlights */
.home-highlights { display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap:12px; margin-bottom:24px; }
.highlight-item { border:1px solid #e5eefb; border-radius:12px; padding:16px; background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); }
.highlight-icon { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; border-radius:999px; background: linear-gradient(135deg,#fde7f2 0%, #e6f0ff 100%); color:#1f2937; margin-bottom:8px; font-size:20px; }
.highlight-item h3 { margin:0 0 6px; font-size:1rem; }
.highlight-item p { margin:0; color:#566; }

@media (max-width: 600px) {
  .home-accent .hero { padding: 20px; }
  .home-accent .hero h2 { font-size: 1.6rem; }
}

/* Testimonials (Home) */
.home-testimonials h3 { margin: 0 0 10px; font-size: 1.05rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.testimonial-card { border: 1px solid #e5eefb; border-radius: 12px; padding: 14px; background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.testimonial-quote { margin: 0 0 10px; font-size: 0.98rem; line-height: 1.45; color: #1f2937; }
.testimonial-meta { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #fde7f2 0%, #e6f0ff 100%); box-shadow: 0 2px 6px rgba(0,0,0,0.06); }
.testimonial-author { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 0.95rem; }
.testimonial-author span { font-size: 0.85rem; color: #64748b; }

@media (max-width: 500px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Testimonial stars */
.testimonial-stars { display: inline-flex; gap: 2px; margin-bottom: 6px; }
.testimonial-stars .star { color: #d1d5db; font-size: 14px; line-height: 1; }
.testimonial-stars .star.filled { color: #f59e0b; }
