@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Noto+Sans+KR:wght@100..900&display=swap');

/* ===================== Variables ===================== */
:root {
  --primary: #1152d4;
  --primary-light: rgba(17, 82, 212, 0.1);
  --primary-foreground: #ffffff;
  --bg-light: #f6f6f8;
  --bg-dark: #101622;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --red-500: #ef4444;

  /* semantic tokens (light) */
  --bg:       var(--bg-light);
  --fg:       var(--slate-900);
  --fg-muted: var(--slate-500);
  --surface:  #ffffff;
  --surface-2: var(--slate-100);
  --border:   var(--slate-200);
  --header-bg: rgba(255,255,255,0.85);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:       var(--bg-dark);
    --fg:       var(--slate-100);
    --fg-muted: var(--slate-400);
    --surface:  var(--slate-800);
    --surface-2: #0f172a;
    --border:   var(--slate-700);
    --header-bg: rgba(16,22,34,0.85);
  }
}

/* ===================== Reset & Base ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans KR", "Inter", ui-sans-serif, system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.6;
}
main { flex-grow: 1; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
svg { display: inline-block; vertical-align: middle; }

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,82,212,0.1);
}
.header-logo .logo-img {
  height: 2rem;
  object-fit: contain;
}
.footer-logo .logo-img {
  height: 2rem;
  object-fit: contain;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 1024px) {
  .header-inner { padding: 1rem 5rem; }
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  flex-shrink: 0;
}
.header-logo svg { width: 2rem; height: 2rem; }
.header-logo h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.desktop-nav {
  display: none;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 768px) { .desktop-nav { display: flex; } }
.desktop-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: color 0.2s;
}
@media (prefers-color-scheme: dark) {
  .desktop-nav a { color: var(--slate-300); }
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--primary); }
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  color: var(--fg);
}
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1rem;
  z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav nav { display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--slate-700);
  padding: 0.25rem 0.8rem;
}
@media (prefers-color-scheme: dark) {
  .mobile-nav a { color: var(--slate-300); }
}
.mobile-nav a:hover { color: var(--primary); }

/* ===================== Page Hero Banner ===================== */
.page-hero {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.65));
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
}
@media (min-width: 768px) {
  .page-hero { height: 360px; }
  .page-hero h1 { font-size: 3.5rem; }
}

/* ===================== Section ===================== */
.section { padding: 4rem 1.5rem; }
@media (min-width: 1024px) { .section { padding: 5rem 5rem; } }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-header h3 {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .section-header h3 { font-size: 2.25rem; } }
.section-header-bar {
  height: 4px;
  width: 5rem;
  border-radius: 9999px;
  background-color: var(--primary);
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.section-header-row h3 {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.section-header-row a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
}
.section-header-row a:hover { text-decoration: underline; }

/* ===================== Surface styles ===================== */
.bg-surface { background-color: var(--surface); }
.bg-surface-2 { background-color: var(--surface-2); }

/* ===================== Animations ===================== */
.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.from-left { transform: translateX(-24px); }
.anim.from-right { transform: translateX(24px); }
.anim.visible { opacity: 1; transform: translate(0, 0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: heroFadeIn 0.8s ease forwards; }

/* ===================== Hero (Main) ===================== */
.hero-wrapper { padding: 1rem; }
@media (min-width: 1024px) { .hero-wrapper { padding: 2.5rem; } }
.hero {
  position: relative;
  min-height: 520px;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-content h1 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
@media (min-width: 768px) { .hero-content h1 { font-size: 3.75rem; } }
.hero-content p { font-size: 1.125rem; color: var(--slate-200); }
@media (min-width: 768px) { .hero-content p { font-size: 1.25rem; } }

/* ===================== About (main page) ===================== */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-img {
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  background-size: cover;
  background-position: center;
}
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.4;
}
.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg-muted);
}
.pastor-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.pastor-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pastor-icon svg { width: 1.5rem; height: 1.5rem; }
.pastor-info strong { display: block; font-weight: 700; color: var(--fg); }
.pastor-info span { font-size: 0.875rem; color: var(--fg-muted); }

/* ===================== Sermon Cards ===================== */
.sermon-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .sermon-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .sermon-grid { grid-template-columns: repeat(3, 1fr); } }
.sermon-card { cursor: pointer; }
.sermon-thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: var(--slate-200);
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
}
.sermon-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.2);
  transition: background-color 0.2s;
}
.sermon-card:hover .sermon-play-overlay { background-color: rgba(0,0,0,0.4); }
.sermon-play-overlay svg {
  width: 3rem;
  height: 3rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}
.sermon-card:hover .sermon-play-overlay svg { opacity: 1; }
.sermon-tag {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
}
.sermon-card h4 {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  transition: color 0.2s;
  line-height: 1.4;
}
.sermon-card:hover h4 { color: var(--primary); }
.sermon-card p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ===================== Worship Info ===================== */
.worship-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .worship-grid { grid-template-columns: 1fr 1fr; } }
.worship-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.worship-title svg { color: var(--primary); width: 1.5rem; height: 1.5rem; }
.worship-table {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.worship-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.worship-row:last-child { border-bottom: none; }
.worship-row-left strong {
  display: block;
  font-weight: 700;
  color: var(--fg);
}
.worship-row-left span {
  font-size: 0.875rem;
  color: var(--fg-muted);
}
.worship-time { font-weight: 700; color: var(--primary); }
.map-container {
  height: 280px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--slate-200);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.map-pin {
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  padding: 0.75rem;
  box-shadow: 0 4px 16px rgba(17,82,212,0.5);
}
.map-pin svg { width: 1.5rem; height: 1.5rem; }
.address { display: flex; flex-direction: column; gap: 0.5rem; }
.address-line { font-weight: 700; color: var(--fg); }
.address-sub { color: var(--fg-muted); font-size: 0.95rem; }
.address-btns { display: flex; gap: 1rem; margin-top: 0.5rem; }
.btn-outline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background-color: var(--surface);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--fg);
  transition: background-color 0.2s;
}
.btn-outline:hover { background-color: var(--surface-2); }
.btn-outline svg { width: 1rem; height: 1rem; }

/* ===================== News Gallery ===================== */
.news-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .news-grid { grid-template-columns: 2fr 1fr; } }
.news-list { display: flex; flex-direction: column; gap: 0.5rem; }
.news-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  border-radius: 0.75rem;
  transition: background-color 0.2s;
  cursor: pointer;
}
.news-item:hover { background-color: var(--surface-2); }
.news-item-info { display: flex; flex-direction: column; gap: 0.25rem; }
.news-type { font-size: 0.75rem; font-weight: 700; }
.news-type.important { color: var(--red-500); }
.news-type.notice { color: var(--primary); }
.news-type.general { color: var(--fg-muted); }
.news-item h5 { font-weight: 700; color: var(--fg); transition: color 0.2s; }
.news-item:hover h5 { color: var(--primary); }
.news-date { font-size: 0.75rem; color: var(--slate-400); }
.news-chevron svg { width: 1.25rem; height: 1.25rem; color: var(--slate-300); }
.gallery-section h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.gallery-section h3 svg { color: var(--primary); width: 1.5rem; height: 1.5rem; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin-bottom: 1rem; }
.gallery-item {
  aspect-ratio: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--slate-200);
}
.btn-gallery-more {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(17,82,212,0.2);
  background: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}
.btn-gallery-more:hover { background-color: var(--primary-light); }

/* ===================== Footer ===================== */
.site-footer {
  background-color: var(--slate-900);
  color: var(--slate-400);
  padding: 3rem 1.5rem;
}
@media (min-width: 1024px) { .site-footer { padding: 3rem 5rem; } }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 1.5rem; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
.footer-logo svg { width: 2rem; height: 2rem; color: var(--primary); }
.footer-logo span { font-size: 1.125rem; font-weight: 700; }
.footer-desc { max-width: 28rem; line-height: 1.7; font-size: 0.9rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--slate-800);
  color: var(--slate-400);
  transition: background-color 0.2s, color 0.2s;
}
.footer-social a:hover { background-color: var(--primary); color: #fff; }
.footer-social svg { width: 1.25rem; height: 1.25rem; }
.footer-col h4 {
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; line-height: 1.6; }
.footer-col li svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.2rem; }
.footer-col a { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a li { transition: color 0.2s; }
.footer-col a li:hover { color: var(--slate-200); }
.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 2rem;
  font-size: 0.75rem;
  text-align: center;
}

/* ===================== Value Cards ===================== */
.value-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .value-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .value-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 1.5rem; height: 1.5rem; }
.value-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--fg); }
.value-card p { font-size: 1rem; color: var(--fg-muted); line-height: 1.6; }

/* ===================== Breadcrumb ===================== */
.breadcrumb {
  padding: 0.75rem 1.5rem;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--fg-muted);
}
@media (min-width: 1024px) { .breadcrumb { padding: 0.75rem 5rem; } }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ===================== Full news page ===================== */
.news-full-list { display: flex; flex-direction: column; }
.news-full-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background-color 0.15s;
  gap: 1rem;
}
.news-full-item:hover { background-color: var(--surface-2); }
.news-full-num { font-size: 0.85rem; color: var(--fg-muted); width: 2.5rem; flex-shrink: 0; }
.news-full-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
.badge-important { background-color: #fee2e2; color: #dc2626; }
.badge-notice    { background-color: var(--primary-light); color: var(--primary); }
.badge-general   { background-color: var(--surface-2); color: var(--fg-muted); }
.news-full-title { flex: 1; font-weight: 500; color: var(--fg); }
.news-full-item:hover .news-full-title { color: var(--primary); }
.news-full-date { font-size: 0.8rem; color: var(--fg-muted); flex-shrink: 0; }
.news-full-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-bottom: 2px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg-muted);
  background-color: var(--surface-2);
  gap: 1rem;
}
.news-full-header .h-num { width: 2.5rem; }
.news-full-header .h-title { flex: 1; }
.news-full-header .h-date { flex-shrink: 0; }

/* ===================== Pagination ===================== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.page-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.page-btn:hover, .page-btn.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===================== Gallery full page ===================== */
.gallery-full-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .gallery-full-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-full-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-full-item {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--slate-200);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-full-item:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ===================== Online Worship Banner ===================== */
.online-banner {
  background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.online-banner h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.online-banner p { font-size: 0.9rem; opacity: 0.85; }
.btn-primary {
  background-color: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary svg { width: 1rem; height: 1rem; }

/* ===================== Tabs ===================== */
.tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.15s;
}
.tab-btn:hover, .tab-btn.active {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===================== Utility ===================== */
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
