/* ============================================
   Lake Sylvan POA — Site Styles
   ============================================ */

:root {
  --color-primary: #d35400;
  --color-primary-dark: #b34700;
  --color-primary-light: #e8701a;
  --color-accent: #0d9488;
  --color-accent-light: #14b8a6;
  --color-text: #1a1a2e;
  --color-text-light: #4a4a68;
  --color-text-muted: #6b7280;
  --color-bg: #ffffff;
  --color-bg-warm: #faf8f5;
  --color-bg-section: #f9fafb;
  --color-border: #e5e7eb;
  --color-border-light: #f3f4f6;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-accent-light); }

/* Typography */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; color: var(--color-text); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
p { color: var(--color-text-light); }

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header p {
  margin-top: 12px;
  font-size: 1.125rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo img {
  height: 48px;
  width: auto;
}

.header-logo span {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.2;
}

.nav { display: flex; align-items: center; gap: 8px; }

.nav a {
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-light);
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
}

.nav a:hover, .nav a.active {
  color: var(--color-text);
  background: var(--color-bg-section);
}

.nav-cta {
  background: var(--color-primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--color-primary-dark) !important;
  color: #fff !important;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 6px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; text-align: center; padding: 12px 16px; font-size: 1rem; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 26, 46, 0.35) 0%,
    rgba(26, 26, 46, 0.5) 50%,
    rgba(26, 26, 46, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px;
  max-width: 720px;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-content p {
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn-secondary {
  background: var(--color-bg-section);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-border-light);
  transform: translateY(-1px);
}

/* ============================================
   Cards
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: transparent;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-icon-orange { background: #fff3e0; }
.card-icon-teal { background: #e0f7f4; }
.card-icon-blue { background: #e3f2fd; }
.card-icon-green { background: #e8f5e9; }

.card h3 {
  margin-bottom: 8px;
  font-size: 1.125rem;
}

.card p {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.card-link:hover { color: var(--color-primary-dark); }
.card-link::after { content: ' →'; }

/* ============================================
   Quick Stats Bar
   ============================================ */
.stats-bar {
  background: var(--color-text);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  color: var(--color-primary-light);
  font-size: 2rem;
  margin-bottom: 4px;
}

.stat-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================
   About / Content Pages
   ============================================ */
.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block p {
  margin-bottom: 16px;
  font-size: 1.0625rem;
}

.content-block h3 {
  margin-top: 32px;
  margin-bottom: 12px;
}

/* Page Header (interior pages) */
.page-header {
  background: var(--color-text);
  padding: 120px 0 60px;
  margin-top: var(--header-height);
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 8px;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
}

/* ============================================
   Documents List
   ============================================ */
.doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
  color: var(--color-text);
}

.doc-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
}

.doc-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #fff3e0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.doc-info { flex: 1; }
.doc-info strong { display: block; font-size: 0.9375rem; }
.doc-info span { font-size: 0.8125rem; color: var(--color-text-muted); }

.doc-download {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ============================================
   Board Members
   ============================================ */
.board-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

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

@media (max-width: 480px) {
  .board-grid {
    grid-template-columns: 1fr;
  }
}

.board-card {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.board-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-bg-section);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-text-muted);
  border: 2px solid var(--color-border);
}

.board-card .board-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  display: block;
  border: 2px solid var(--color-border);
}

.board-card .board-vacant {
  color: var(--color-primary-light);
  font-style: italic;
}

.board-card h4 { font-size: 1rem; margin-bottom: 4px; }
.board-card p { font-size: 0.8125rem; color: var(--color-text-muted); }

/* ============================================
   Pay Dues
   ============================================ */
.dues-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.dues-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 24px 0 8px;
}

.dues-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.dues-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  padding: 16px 28px;
  font-size: 1rem;
}

.dues-features {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
  text-align: left;
}

.dues-features li {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dues-features li::before {
  content: '✓';
  color: var(--color-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ============================================
   Contact
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-bg-section);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-info-item h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.875rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   Gallery
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-bg-section);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.gallery-caption {
  padding: 8px 12px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* ============================================
   News
   ============================================ */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s;
}

.news-item:hover { box-shadow: var(--shadow-md); }

.news-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.news-item h3 { margin: 8px 0; }
.news-item p { font-size: 0.9375rem; }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.footer h4 {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer p { font-size: 0.875rem; line-height: 1.7; }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.8125rem;
}

/* ============================================
   Utilities
   ============================================ */
/* ============================================
   Events
   ============================================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.event-card:hover { box-shadow: var(--shadow-lg); }

.event-image {
  position: relative;
  flex-shrink: 0;
  width: 240px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  border-radius: var(--radius);
  padding: 8px 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  line-height: 1;
}

.event-month {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.event-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  margin-top: 2px;
}

.event-details {
  padding: 28px 32px;
  flex: 1;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

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

.event-category {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background: #fff3e0;
  padding: 4px 10px;
  border-radius: 100px;
}

.event-details h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.event-details p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.event-location {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* Past Events */
.past-events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.past-event-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.past-event-date {
  flex-shrink: 0;
  text-align: center;
  min-width: 48px;
}

.past-event-info h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.past-event-info p { font-size: 0.8125rem; }

@media (max-width: 768px) {
  .event-card { flex-direction: column; }
  .event-image { width: 100%; height: 200px; }
}

/* ============================================
   Financial Transparency
   ============================================ */
.finance-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.finance-stat {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.finance-stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.finance-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
}

.finance-stat-value.income { color: #16a34a; }
.finance-stat-value.expense { color: #dc2626; }

.finance-filters {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.filter-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-row .form-group { margin-bottom: 0; }

.finance-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.finance-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.finance-table thead {
  background: var(--color-bg-section);
  border-bottom: 2px solid var(--color-border);
}

.finance-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.finance-table th.sortable {
  cursor: pointer;
  user-select: none;
}

.finance-table th.sortable:hover { color: var(--color-text); }

.sort-arrow {
  font-size: 0.75rem;
  opacity: 0.5;
}

.finance-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border-light);
}

.finance-table tbody tr:last-child td { border-bottom: none; }

.finance-table tbody tr:hover { background: var(--color-bg-warm); }

.type-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.type-income {
  background: #dcfce7;
  color: #16a34a;
}

.type-expense {
  background: #fef2f2;
  color: #dc2626;
}

.category-tag {
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

.amount-income {
  color: #16a34a;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.amount-expense {
  color: #dc2626;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
}

/* Responsive table */
@media (max-width: 640px) {
  .finance-table thead { display: none; }
  .finance-table tbody tr {
    display: block;
    padding: 16px 20px;
    border-bottom: 1px solid var(--color-border);
  }
  .finance-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: none;
  }
  .finance-table td::before {
    content: attr(data-label);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-text-muted);
  }
}

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
