/* ============================================================
   에듀브릿지 문화교육협회 — 반응형 스타일시트 (모바일 퍼스트)
   브랜드 색상: 로고의 파랑·네이비·청록·노랑
   ============================================================ */
:root {
  --blue: #2b57b4;
  --blue-dark: #234a9c;
  --navy: #1a3369;
  --navy-deep: #12264e;
  --teal: #2bb8ae;
  --yellow: #f0a92e;
  --text: #243043;
  --muted: #6b7690;
  --line: #e4eaf2;
  --soft: #f4f7fb;
  --white: #ffffff;
  --danger: #d23b3b;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(26, 51, 105, 0.08);
  --shadow-lg: 0 16px 40px rgba(26, 51, 105, 0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    system-ui, "Segoe UI", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
em { font-style: normal; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ── 버튼 ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: 10px;
  font-weight: 700; font-size: 0.97rem; line-height: 1.2;
  transition: transform 0.18s, background 0.18s, box-shadow 0.18s, color 0.18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: var(--shadow); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { box-shadow: var(--shadow-lg); }
.btn-outline { border: 1.5px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-yellow { background: var(--yellow); color: #3c2b00; }
.btn-yellow:hover { background: #ffb83d; box-shadow: var(--shadow); }
.btn-block { width: 100%; padding: 15px; font-size: 1.05rem; }

/* ── 배지 ─────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.76rem; font-weight: 700; color: #fff; letter-spacing: 0.02em;
}
.cat-self_dev { background: var(--navy); }
.cat-culture { background: var(--teal); }
.cat-social { background: var(--blue); }
.cat-talent { background: var(--yellow); color: #3c2b00; }
.badge-pin { background: var(--yellow); color: #3c2b00; flex: none; }
.badge-open { background: var(--teal); }
.badge-closed { background: #8a93a8; }
.badge-count { background: rgba(18, 38, 78, 0.72); }

/* ── 헤더 ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand img { height: 42px; width: 42px; object-fit: cover; border-radius: 10px; }
.brand-text {
  display: flex; flex-direction: column;
  font-weight: 800; font-size: 1.02rem; line-height: 1.15; color: var(--navy);
}
.brand-text small { font-size: 0.7rem; font-weight: 600; color: var(--muted); letter-spacing: 0.1em; }

.gnb { display: none; }
.gnb a {
  display: block; padding: 12px 14px; border-radius: 9px;
  font-weight: 600; font-size: 0.97rem; transition: background 0.15s, color 0.15s;
}
.gnb a:hover { background: var(--soft); color: var(--blue); }
.gnb a.active { color: var(--blue); }
.gnb a.gnb-apply { background: var(--blue); color: #fff; text-align: center; }
.gnb a.gnb-apply:hover { background: var(--blue-dark); }

.gnb.open {
  display: flex; flex-direction: column; gap: 4px;
  position: absolute; top: 66px; left: 0; right: 0;
  background: #fff; padding: 12px 20px 20px;
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
}

.nav-toggle { display: flex; flex-direction: column; gap: 5px; padding: 10px 6px; }
.nav-toggle span {
  width: 22px; height: 2.4px; background: var(--navy); border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

@media (min-width: 900px) {
  .gnb { display: flex; align-items: center; gap: 4px; }
  .gnb a.gnb-apply { margin-left: 10px; padding: 10px 20px; }
  .nav-toggle { display: none; }
}

/* ── 히어로 배너 ──────────────────────────── */
.hero {
  position: relative; height: 460px; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep), var(--blue));
}
.hero-slide {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-deep), var(--blue)) center/cover no-repeat;
  opacity: 0; transition: opacity 0.9s ease; pointer-events: none;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 48, 0.68), rgba(10, 22, 48, 0.2));
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  color: #fff;
}
.hero-eyebrow {
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.16em;
  color: #7fe0d8;
}
.hero h1 {
  font-size: clamp(1.85rem, 5vw, 3.05rem); font-weight: 800; line-height: 1.28;
  margin: 10px 0 12px;
}
.hero-sub { font-size: clamp(0.98rem, 2.2vw, 1.18rem); opacity: 0.92; margin-bottom: 26px; }
.hero-content > * { animation: fadeUp 0.7s both; }
.hero-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-content > *:nth-child(4) { animation-delay: 0.24s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.hero-dots {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.dot {
  width: 9px; height: 9px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.45); transition: all 0.25s;
}
.dot.active { background: #fff; width: 26px; }
@media (min-width: 900px) { .hero { height: 540px; } }

/* ── 섹션 공통 ───────────────────────────── */
.section { padding: 64px 0; }
.section-soft { background: var(--soft); }
.eyebrow {
  color: var(--teal); font-weight: 800; letter-spacing: 0.15em; font-size: 0.78rem;
}
.section h2, .section-head h2 {
  font-size: clamp(1.45rem, 3vw, 1.95rem); font-weight: 800; color: var(--navy);
  margin-top: 4px;
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  margin-bottom: 28px;
}
.link-more { color: var(--blue); font-weight: 700; font-size: 0.94rem; white-space: nowrap; }
.link-more:hover { text-decoration: underline; }
.empty { color: var(--muted); text-align: center; padding: 48px 0; grid-column: 1 / -1; }
@media (min-width: 900px) { .section { padding: 84px 0; } }

/* ── 메인: 소개 스트립 ────────────────────── */
.about-strip { display: grid; gap: 36px; align-items: center; }
.about-text h2 { margin-bottom: 14px; }
.about-summary { color: var(--muted); margin-bottom: 24px; }
/* 핵심 사업 — 다리 아치 기둥 */
.pillars { display: grid; gap: 18px; }
@media (min-width: 640px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1040px) { .pillars { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px 26px; box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pillar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; background: currentColor; opacity: 0.9;
}
.pillar .arch { margin-bottom: 16px; }
.pillar h3 { color: var(--navy); font-size: 1.12rem; font-weight: 750; margin-bottom: 8px; }
.pillar p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.pillar.p1 { color: var(--blue); }
.pillar.p2 { color: var(--teal); }
.pillar.p3 { color: var(--yellow); }
.pillar.p4 { color: var(--navy); }

/* 신념 띠 */
.creed { background: var(--navy-deep); color: #fff; padding: 62px 0; }
.creed .eyebrow { color: #7fe0d8; display: block; margin-bottom: 14px; }
.creed p {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem); font-weight: 500;
  line-height: 1.6; max-width: 32em;
}
.creed-inline {
  margin-top: 30px; padding: 20px 24px; border-radius: 12px;
  background: #fff; border: 1px solid var(--line);
  color: var(--navy); font-weight: 500;
}

/* 프로그램 카드 (대상 태그형) */
.prog-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 620px) { .prog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .prog-grid { grid-template-columns: repeat(3, 1fr); } }
.prog {
  display: flex; flex-direction: column; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.prog:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #c9d8ef; }
.prog h3 { color: var(--navy); font-size: 1.12rem; font-weight: 750; }
.prog .who { display: flex; flex-wrap: wrap; gap: 6px; }
.prog p { color: var(--muted); font-size: 0.92rem; line-height: 1.62; }
.prog .go { margin-top: auto; padding-top: 12px; color: var(--blue); font-weight: 700; font-size: 0.88rem; }

/* 대상 태그 (분류 필터의 .chip 과는 별개) */
.tag {
  display: inline-flex; align-items: center;
  font-size: 0.75rem; font-weight: 700; padding: 4px 11px; border-radius: 999px;
  background: #eaf1fb; color: var(--blue-dark); border: 1px solid #d6e4f7;
}
.tag-child, .tag-teen { background: #e4f7f5; color: #1b7f78; border-color: #c9efeb; }
.tag-parent { background: #fdf2de; color: #8a5e10; border-color: #f7e3be; }

/* 메인 소개 보조 카드 */
.about-quote {
  border-left: 4px solid var(--teal); background: var(--soft);
  padding: 17px 21px; border-radius: 0 12px 12px 0;
  color: var(--navy); font-weight: 600; margin: 18px 0 22px;
}
.about-body p { color: var(--muted); margin-bottom: 14px; max-width: 60ch; }
.about-body p:last-child { margin-bottom: 0; }
.about-more { margin-top: 26px; }
.about-side { display: flex; flex-direction: column; gap: 14px; align-self: start; }
.fact {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow);
}
.fact dt { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; color: var(--teal); margin-bottom: 6px; }
.fact dd { font-weight: 700; color: var(--navy); font-size: 1.03rem; }
.fact dd span { display: block; font-weight: 400; font-size: 0.88rem; color: var(--muted); margin-top: 4px; }

/* 히어로 버튼 묶음 */
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-ghost { border: 1.6px solid rgba(255, 255, 255, 0.6); color: #fff; }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
@media (min-width: 960px) { .about-strip { grid-template-columns: 1.55fr 1fr; gap: 60px; } }

/* ── 카드 그리드 ─────────────────────────── */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: block; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-media {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  background: linear-gradient(135deg, #e8eef7, var(--soft));
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.card:hover .card-media img { transform: scale(1.045); }
.card-media .badge { position: absolute; top: 12px; left: 12px; }
.card-media .badge-closed, .card-media .badge-count { left: auto; right: 12px; }
.card-body { padding: 18px 20px 22px; }
.card-body h3 { font-size: 1.07rem; font-weight: 750; color: var(--navy); margin-bottom: 6px; }
.card-body p {
  font-size: 0.91rem; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ── 공지 목록 ───────────────────────────── */
.notice-rows li a {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 6px; border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.notice-rows li:first-child a { border-top: 2px solid var(--navy); }
.notice-rows li a:hover { background: var(--soft); }
.notice-title {
  flex: 1; font-weight: 600; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.notice-rows time { color: var(--muted); font-size: 0.87rem; flex: none; }

/* ── CTA 밴드 ────────────────────────────── */
.cta-band {
  background: linear-gradient(115deg, var(--blue), var(--teal));
  color: #fff; padding: 52px 0;
}
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.cta-inner h2 { font-size: clamp(1.35rem, 3vw, 1.8rem); font-weight: 800; }
.cta-inner p { opacity: 0.92; margin-top: 6px; }

/* ── 서브페이지 헤드 ─────────────────────── */
.page-head {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--blue) 90%);
  color: #fff; padding: 54px 0 48px;
}
.page-head .eyebrow { color: #7fe0d8; }
.page-head h1 {
  font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 800; line-height: 1.3;
  margin-top: 6px;
}
.page-head-desc { margin-top: 10px; opacity: 0.9; font-size: 0.98rem; }
.page-head-meta { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.page-head-date { font-size: 0.9rem; opacity: 0.85; }

/* ── 분류 칩 ─────────────────────────────── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  padding: 8px 18px; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff;
  font-weight: 600; font-size: 0.91rem; color: var(--muted);
  transition: all 0.15s;
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ── 본문(상세) ──────────────────────────── */
.article { max-width: 820px; margin: 0 auto; }
.article-image { border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 28px; width: 100%; }
.article-summary {
  font-size: 1.05rem; font-weight: 600; color: var(--navy);
  background: var(--soft); border-left: 4px solid var(--teal);
  padding: 16px 20px; border-radius: 0 10px 10px 0; margin-bottom: 24px;
}
.article-body { font-size: 1rem; color: var(--text); }
.article-body p { margin-bottom: 1em; }
.article-nav { margin-top: 40px; text-align: center; }

.apply-cta {
  margin-top: 44px; padding: 26px 28px;
  background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.apply-cta strong { color: var(--navy); font-size: 1.05rem; }
.apply-cta p { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }

/* ── 협회 소개 ───────────────────────────── */
.greeting-grid { display: grid; gap: 36px; align-items: start; }
.greeting-logo img {
  width: 100%; max-width: 300px; margin: 0 auto;
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.greeting-text h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--navy); font-weight: 800; margin: 4px 0 16px; }
.greeting-sign { margin-top: 20px; color: var(--muted); }
.greeting-sign strong { color: var(--navy); font-size: 1.05rem; margin-left: 4px; }
.about-lead { max-width: 820px; color: var(--text); margin-bottom: 34px; }
.contact-grid { display: grid; gap: 16px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.contact-card strong { display: block; color: var(--navy); margin: 12px 0 4px; }
.contact-card p { color: var(--muted); font-size: 0.95rem; }
@media (min-width: 900px) {
  .greeting-grid { grid-template-columns: 300px 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 갤러리 ──────────────────────────────── */
.photo-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .photo-grid { grid-template-columns: repeat(3, 1fr); } }
.photo-item {
  position: relative; display: block; border-radius: 12px; overflow: hidden;
  aspect-ratio: 3 / 2; box-shadow: var(--shadow);
}
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.photo-item:hover img { transform: scale(1.04); }
.photo-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 14px 10px; color: #fff; font-size: 0.85rem;
  background: linear-gradient(transparent, rgba(10, 20, 40, 0.75));
}

.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(8, 14, 28, 0.92);
  display: none; align-items: center; justify-content: center; padding: 28px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 88vh; border-radius: 10px; }
.lightbox-close {
  position: absolute; top: 14px; right: 22px;
  color: #fff; font-size: 2.2rem; line-height: 1; padding: 8px;
}

/* ── 신청 폼 ─────────────────────────────── */
.form-card {
  max-width: 680px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px 24px;
}
.field { margin-bottom: 20px; flex: 1; }
.field-row { display: flex; flex-wrap: wrap; gap: 0 20px; }
.field-row .field { min-width: 240px; }
.field label {
  display: block; font-weight: 700; font-size: 0.92rem; color: var(--navy);
  margin-bottom: 8px;
}
.field em, .agree-row em { color: var(--danger); }
.field input[type="text"], .field input[type="email"],
.field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; color: var(--text); background: #fbfdff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(43, 87, 180, 0.13); background: #fff;
}
.errorlist, .form-errors { color: var(--danger); font-size: 0.85rem; margin-top: 6px; }
.form-errors { margin-bottom: 16px; }

.privacy-box {
  background: var(--soft); border-radius: 10px; padding: 16px 18px;
  font-size: 0.85rem; color: var(--muted); margin: 4px 0 14px;
}
.privacy-box strong { color: var(--navy); display: block; margin-bottom: 6px; }
.privacy-box li { padding-left: 12px; position: relative; }
.privacy-box li::before { content: "·"; position: absolute; left: 2px; }

.agree-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 22px; }
.agree-row input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 3px; accent-color: var(--blue); flex: none;
}
.agree-row label { font-weight: 600; font-size: 0.95rem; }
@media (min-width: 700px) { .form-card { padding: 40px 44px; } }

/* ── 신청 완료 ───────────────────────────── */
.done-card {
  max-width: 560px; margin: 20px auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 56px 28px;
}
.done-icon {
  width: 72px; height: 72px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--teal); color: #fff;
  font-size: 2.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.done-card h1 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.done-card p { color: var(--muted); margin-bottom: 28px; }
.done-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── 페이지네이션 ────────────────────────── */
.pagination {
  display: flex; gap: 6px; justify-content: center; align-items: center;
  margin-top: 44px;
}
.pagination a, .pagination .current {
  min-width: 38px; height: 38px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 9px; font-weight: 600; font-size: 0.93rem;
}
.pagination a { color: var(--muted); border: 1px solid var(--line); background: #fff; }
.pagination a:hover { border-color: var(--blue); color: var(--blue); }
.pagination .current { background: var(--blue); color: #fff; }

/* ── 푸터 ────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.72); padding: 44px 0 36px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 20px 40px; justify-content: space-between; }
.footer-brand strong { color: #fff; font-size: 1.06rem; }
.footer-brand p { font-size: 0.88rem; margin-top: 4px; color: rgba(255, 255, 255, 0.55); }
.footer-info { font-size: 0.88rem; line-height: 1.9; }
.footer-copy {
  width: 100%; margin-top: 8px; padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.42);
}
