/* ============================================================
   LIPHP.org — Modern Redesign 2024
   Long Island PHP User Group
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --primary:        #6366f1;
  --primary-dark:   #4f46e5;
  --primary-light:  #e0e7ff;
  --secondary:      #8b5cf6;
  --accent:         #06b6d4;

  --bg:             #ffffff;
  --surface:        #f8fafc;
  --surface-2:      #f1f5f9;
  --border:         #e2e8f0;
  --border-dark:    #cbd5e1;

  --text:           #0f172a;
  --text-muted:     #64748b;
  --text-light:     #94a3b8;

  --link:           #6366f1;
  --link-hover:     #4f46e5;

  --radius-sm:      4px;
  --radius:         8px;
  --radius-lg:      12px;
  --radius-xl:      16px;
  --radius-full:    9999px;

  --shadow-xs:      0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:         0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -1px rgba(0,0,0,.04);
  --shadow-md:      0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --shadow-lg:      0 20px 25px -5px rgba(0,0,0,.08), 0 10px 10px -5px rgba(0,0,0,.03);

  --transition:     150ms cubic-bezier(.4,0,.2,1);
  --transition-md:  250ms cubic-bezier(.4,0,.2,1);

  --header-h:       64px;
  --max-w:          1100px;
  --content-w:      720px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--link-hover); text-decoration: underline; }
ul, ol { list-style: none; }

/* ── Skip Link ─────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 8px;
  background: var(--primary); color: #fff;
  padding: 8px 16px; border-radius: var(--radius);
  font-size: .875rem; font-weight: 600; z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 8px; color: #fff; }

/* ── Layout container ──────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
}

.site-header .container {
  height: 100%;
  display: flex; align-items: center; gap: 24px;
}

/* Logo */
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.site-logo img {
  height: 36px; width: auto;
  object-fit: contain;
}
.site-logo span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.02em;
}
.site-logo:hover { text-decoration: none; }
.site-logo:hover span { color: var(--primary-dark); }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex; align-items: center; gap: 4px;
}
.main-nav ul li a {
  display: block;
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--primary);
  background: var(--primary-light);
  text-decoration: none;
}
.btn-login {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
}
.btn-login:hover {
  background: var(--primary-dark) !important;
  color: #fff !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: none;
  font-size: 1.4rem; cursor: pointer;
  color: var(--text-muted);
  padding: 6px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav-toggle:hover { color: var(--primary); }

/* ══════════════════════════════════════════════════════════════
   HERO / MISSION (front page)
══════════════════════════════════════════════════════════════ */
.site-hero {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  color: #fff;
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.site-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.site-hero .container { position: relative; }
.site-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.site-hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: .9;
  max-width: 640px;
  margin-inline: auto;
  font-weight: 300;
  line-height: 1.6;
}
.hero-actions {
  margin-top: 32px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.hero-actions a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-weight: 600; font-size: .95rem;
  transition: all var(--transition-md);
  text-decoration: none;
}
.hero-btn-primary {
  background: #fff; color: var(--primary);
}
.hero-btn-primary:hover {
  background: var(--primary-light); color: var(--primary-dark);
  text-decoration: none;
}
.hero-btn-outline {
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}
.hero-btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,.1);
  color: #fff; text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════
   MAIN CONTENT
══════════════════════════════════════════════════════════════ */
main { padding: clamp(32px, 5vw, 64px) 0; min-height: calc(100vh - var(--header-h) - 200px); }

/* ── Mission block ─────────────────────────────────────────── */
#mission {
  background: linear-gradient(135deg, var(--primary-light) 0%, #ede9fe 100%);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
  color: var(--primary-dark);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ── Section headings ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--text);
}
h1.title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
h2 { font-size: 1.5rem; margin: 28px 0 12px; }
h3 { font-size: 1.25rem; margin: 24px 0 10px; }
h2.comments { font-size: 1.25rem; margin: 40px 0 16px; color: var(--text-muted); }
p  { margin-bottom: 16px; }
ul li, ol li { margin-bottom: 6px; }

/* ── Node cards (meeting / page listings) ──────────────────── */
.node {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-md), transform var(--transition-md);
}
.node:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Full-node (single page) */
.full-node { box-shadow: none; border: none; padding: 0; }
.full-node:hover { box-shadow: none; transform: none; }

.node h2.title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 8px;
  border: none; padding: 0;
}
.node h2.title a {
  color: var(--text);
}
.node h2.title a:hover { color: var(--primary); text-decoration: none; }

/* Meta / submitted */
.meta, .submitted {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.submitted a { color: var(--text-muted); }
.submitted a:hover { color: var(--primary); }

/* Node content */
.node .content { margin-top: 12px; }
.node .content p { margin-bottom: 12px; }

/* Date field */
.field-field-date,
.date-display-single {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.field-field-date .field-items { display: contents; }
.field-field-date .field-item { display: contents; }
.date-display-separator { margin-inline: 2px; }

/* Location field */
.field-field-meet-location {
  margin-top: 12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
}
.field-field-meet-location .field-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.location.vcard .fn { font-weight: 700; display: block; }
.street-address, .locality, .region, .postal-code {
  color: var(--text-muted);
}
.map-link { margin-top: 8px; }
.map-link a {
  font-size: .85rem;
  font-weight: 500;
}

/* Node links / read more */
.node .links {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.node .links ul { display: flex; gap: 12px; flex-wrap: wrap; }
.node .links a {
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
}
.node .links .comment_forbidden span,
.node .links .comment_forbidden a {
  font-size: .82rem;
  color: var(--text-light);
}

/* ── Comments ──────────────────────────────────────────────── */
#comments { margin-top: 48px; }
.comment {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 16px;
  font-size: .92rem;
}
.comment h3.title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.comment h3.title a { color: var(--text); }
.comment .submitted { font-size: .78rem; margin-bottom: 10px; }
.comment .content p { margin-bottom: 8px; }

/* ── Aggregator (Blog/Job feeds) ───────────────────────────── */
#aggregator { display: flex; flex-direction: column; gap: 20px; }
.feed-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-md), transform var(--transition-md);
}
.feed-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feed-item h3.feed-item-title {
  font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}
.feed-item h3.feed-item-title a { color: var(--text); }
.feed-item h3.feed-item-title a:hover { color: var(--primary); text-decoration: none; }
.feed-item-meta {
  font-size: .8rem; color: var(--text-light); margin-bottom: 12px;
}
.feed-item-meta a { color: var(--text-muted); }
.feed-item-meta a:hover { color: var(--primary); }
.feed-item-body { color: var(--text-muted); font-size: .92rem; line-height: 1.65; }
.feed-item-categories {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  font-size: .78rem; color: var(--text-light);
}
.feed-item-categories a {
  font-weight: 600; color: var(--primary);
}

/* ── Calendar ──────────────────────────────────────────────── */
.calendar-calendar { margin: 0; }
.calendar-calendar table.cal {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.calendar-calendar table.cal th {
  background: var(--primary);
  color: #fff;
  padding: 10px 8px;
  text-align: center;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.calendar-calendar table.cal td {
  padding: 8px;
  vertical-align: top;
  border: 1px solid var(--border);
  min-height: 80px;
  height: 80px;
}
.calendar-calendar table.cal td.empty {
  background: var(--surface-2);
}
.calendar-calendar table.cal td.has-events {
  background: var(--primary-light);
}
.calendar-calendar td.today > *:first-child {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 2px 6px;
  font-weight: 700;
  display: inline-block;
}

/* Mini calendar */
.calendar-calendar table.mini {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
}
.calendar-calendar table.mini th {
  text-align: center;
  padding: 4px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .75rem;
}
.calendar-calendar table.mini td {
  text-align: center;
  padding: 3px;
  border: none;
}
.calendar-calendar .mini-day-on a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: var(--primary); color: #fff;
  border-radius: var(--radius-full);
  font-weight: 700; text-decoration: none;
}
.calendar-calendar .mini-day-on a:hover { background: var(--primary-dark); }

/* Date navigation */
.date-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.date-nav h3 { font-size: 1.1rem; margin: 0; }
.date-nav h3 a { color: var(--text); }
.date-nav h3 a:hover { color: var(--primary); text-decoration: none; }
.date-nav a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem; font-weight: 600; color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.date-nav a:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
  text-decoration: none;
}

/* Full calendar day view */
.calendar-calendar .view-calendar .calendar-agenda-items {
  padding: 0; margin: 0;
}
.calendar-calendar .view-calendar .calendar-item {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 8px;
  font-size: .88rem;
}
.calendar-calendar .view-calendar .calendar-item a { font-weight: 600; }

/* Pager */
.item-list .pager {
  display: flex; gap: 4px; align-items: center;
  margin-top: 32px; justify-content: center;
}
.pager li { list-style: none; }
.pager a, .pager-current {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}
.pager a:hover {
  background: var(--primary); color: #fff; border-color: var(--primary);
  text-decoration: none;
}
.pager-current {
  background: var(--primary); color: #fff; border-color: var(--primary);
  font-weight: 600;
}

/* ── More link ─────────────────────────────────────────────── */
.more-link {
  text-align: right; margin-top: 8px;
}
.more-link a {
  font-size: .875rem; font-weight: 600; color: var(--primary);
}

/* ── User / login forms ────────────────────────────────────── */
.content-form {
  max-width: 480px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-item { margin-bottom: 20px; }
.form-item label {
  display: block;
  font-size: .875rem; font-weight: 600;
  margin-bottom: 6px; color: var(--text);
}
.form-item input[type="text"],
.form-item input[type="password"],
.form-item input[type="email"],
.form-item textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem; font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-item input:focus, .form-item textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.form-item .description {
  font-size: .8rem; color: var(--text-light); margin-top: 4px;
}
input[type="submit"],
button[type="submit"],
.form-submit {
  display: inline-flex; align-items: center;
  padding: 10px 24px;
  background: var(--primary);
  color: #fff; border: none; border-radius: var(--radius-full);
  font-size: .95rem; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background var(--transition);
}
input[type="submit"]:hover,
button[type="submit"]:hover,
.form-submit:hover { background: var(--primary-dark); }

/* ── Pipermail archive ─────────────────────────────────────── */
.pipermail-archive {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pipermail-archive table {
  width: 100%; border-collapse: collapse;
  font-size: .9rem;
}
.pipermail-archive table th {
  background: var(--primary); color: #fff;
  padding: 10px 14px; text-align: left;
  font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .05em;
}
.pipermail-archive table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.pipermail-archive table tr:last-child td { border-bottom: none; }
.pipermail-archive table tr:hover td { background: var(--surface-2); }
.pipermail-archive table a { color: var(--primary); font-weight: 500; }

/* Generic page tables */
table {
  width: 100%; border-collapse: collapse;
  font-size: .9rem; margin-bottom: 20px;
}
table th {
  background: var(--surface-2);
  padding: 10px 14px; text-align: left;
  font-weight: 600; border-bottom: 2px solid var(--border);
}
table td {
  padding: 10px 14px; border-bottom: 1px solid var(--border);
}
table tr:hover td { background: var(--surface); }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  font-size: .82rem; color: var(--text-light);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span:not(:last-child)::after { content: '›'; margin-left: 6px; }

/* ── RSS icon ──────────────────────────────────────────────── */
.feed-icon {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--text-muted);
  margin-top: 16px;
}
.feed-icon img { width: 16px; height: 16px; }

/* ── Code blocks ───────────────────────────────────────────── */
pre, code {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: .87em;
}
pre {
  background: #1e1e2e;
  color: #cdd6f4;
  padding: 20px 24px;
  border-radius: var(--radius);
  overflow-x: auto;
  margin: 20px 0;
  line-height: 1.6;
}
code {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}
pre code { background: none; color: inherit; padding: 0; }

/* ── Blockquote ────────────────────────────────────────────── */
blockquote {
  border-left: 4px solid var(--primary);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Mailman / lists styling ───────────────────────────────── */
.mailman-page {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--text);
  color: #94a3b8;
  padding: 40px 0;
  margin-top: 64px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav ul {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.footer-nav a {
  color: #94a3b8; font-size: .875rem; font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover { color: #fff; text-decoration: none; }
.footer-copy {
  font-size: .82rem; color: #64748b;
}
.footer-copy a { color: #94a3b8; }
.footer-copy a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 56px; }

  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 16px;
    display: none;
    margin-left: 0;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav ul li a { border-radius: var(--radius); }
  .btn-login { display: block; text-align: center; }

  h1.title { font-size: 1.5rem; }
  .node { padding: 18px 20px; }
  .feed-item { padding: 16px 20px; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-nav ul { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════════════ */
.clearfix::after { content: ''; display: table; clear: both; }
.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;
}
.tabs { display: none; }

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .nav-toggle { display: none; }
  main { padding: 0; }
  .node { box-shadow: none; border: 1px solid #ccc; }
}
