/* =========================================================
   머니박스 행정사사무소 - 메인 스타일시트
   PHP 7.4 / 닷홈 환경
   ========================================================= */

/* ── 폰트 변수 ─────────────────────────────────────────── */
:root {
  --font-ko: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --font-en: 'Noto Sans KR', sans-serif;
  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-zh: 'Noto Sans SC', 'PingFang SC', sans-serif;
  --font-tw: 'Noto Sans TC', 'PingFang TC', sans-serif;

  /* 브랜드 색상 */
  --mb-primary:   #1a5fa8;
  --mb-secondary: #06A4FF;
  --mb-dark:      #1a2332;
  --mb-light:     #f4f7fb;
  --mb-gray:      #6b7280;
  --mb-border:    #e5e7eb;
  --mb-white:     #ffffff;

  /* 아이콘 기준 크기 */
  --icon-size: 100px;

  /* 그림자 */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);

  /* 전환 */
  --transition: .3s ease;
}

/* ── 언어별 폰트 적용 ──────────────────────────────────── */
.lang-ko { font-family: var(--font-ko); }
.lang-en { font-family: var(--font-en); }
.lang-ja { font-family: var(--font-ja); }
.lang-zh_CN { font-family: var(--font-zh); }
.lang-zh_TW { font-family: var(--font-tw); }

/* ── 리셋 & 기본 ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth}
body { color: var(--mb-dark); background: var(--mb-white); line-height: 1.7; font-size: 20px; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--mb-primary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── 컨테이너 ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── 애니메이션 정의 ───────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bannerZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── 상단 정보 바 ──────────────────────────────────────── */
.topbar {
  background: var(--mb-dark);
  color: rgba(255,255,255,.8);
  font-size: 13px;
  padding: 6px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left i { color: var(--mb-secondary); }

/* 언어 전환 */
.lang-switcher { display: flex; gap: 4px; align-items: center; }
.lang-switcher a {
  padding: 2px 8px; border-radius: 3px; font-size: 12px;
  color: rgba(255,255,255,.7); transition: all var(--transition);
}
.lang-switcher a:hover, .lang-switcher a.active {
  background: var(--mb-primary); color: #fff;
}

/* ── 사이트 헤더 ───────────────────────────────────────── */
.site-header {
  background: var(--mb-white);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

/* 로고 */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height:38px; width: auto; object-fit: contain; }
.logo-fallback { font-size: 20px; font-weight: 900; color: var(--mb-primary); display: none; }

/* 네비게이션 */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-item > a {
  display: block; padding: 10px 14px; font-size: 20px; font-weight: 600;
  color: var(--mb-dark); border-radius: 6px;
  transition: all var(--transition);
}
.nav-item > a:hover, .nav-item.active > a { color: var(--mb-primary); background: var(--mb-light); }

/* 드롭다운 */
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--mb-white); min-width: 180px;
  border-radius: 8px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--mb-border);
  animation: slideIn .2s ease;
  z-index: 999;
}
.nav-item.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  display: block; padding: 10px 16px; font-size: 20px;
  color: var(--mb-dark); border-bottom: 1px solid var(--mb-border);
  transition: all var(--transition);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--mb-light); color: var(--mb-primary); padding-left: 22px; }

/* 모바일 메뉴 버튼 */
.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 6px;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--mb-dark); transition: all var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 메인 배너 슬라이더 ────────────────────────────────── */
.banner-slider { position: relative; overflow: hidden; height: 580px; }
.banner-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
  display: flex; align-items: center;
}
.banner-slide.active { opacity: 1; }
.banner-slide.active .banner-bg { animation: bannerZoom 8s ease forwards; }
.banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,47,80,.75) 0%, rgba(26,47,80,.4) 100%); }
.banner-content {
  position: relative; z-index: 2;
  padding: 0 60px; color: #fff; max-width: 1280px;
}
.banner-badge {
  display: inline-block; background: var(--mb-secondary);
  color: #fff; padding: 4px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
  animation: fadeInLeft .8s ease .2s both;
}
.banner-title {
  font-size: clamp(28px, 4vw, 68px); font-weight: 900; line-height: 0.95;
  margin-bottom: 16px; white-space: pre-line;
  animation: fadeInLeft .8s ease .4s both; text-shadow:1, 0, 20;
}
.banner-sub {
  font-size: 18px; opacity: .9; margin-bottom: 32px;
  animation: fadeInLeft .8s ease .6s both;
}
.banner-btns { display: flex; gap: 12px; animation: fadeInLeft .8s ease .8s both; }
.btn-primary {
  background: var(--mb-secondary); color: #fff;
  padding: 14px 28px; border-radius: 8px; font-weight: 700; font-size: 15px;
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #06A4FF; color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.8); color: #fff;
  padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 15px;
  transition: all var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; }

/* 슬라이더 컨트롤 */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.2); color: #fff; border: 2px solid rgba(255,255,255,.4);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; z-index: 10; transition: all var(--transition);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: var(--mb-primary); border-color: var(--mb-primary); }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer; transition: all var(--transition);
}
.slider-dot.active { background: var(--mb-secondary); transform: scale(1.3); }

/* ── 섹션 공통 ─────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--mb-light); }
.section-title {
  text-align: center; font-size: 32px; font-weight: 900;
  color: var(--mb-dark); margin-bottom: 12px;
}
.section-title span { color: var(--mb-primary); }
.section-sub { text-align: center; color: var(--mb-gray); font-size: 16px; margin-bottom: 56px; }
.section-divider {
  width: 60px; height: 4px; background: var(--mb-secondary);
  margin: 16px auto 48px; border-radius: 2px;
}

/* ── 서비스 카드 그리드 ────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 24px; }
.service-card {
  background: var(--mb-white); border-radius: 16px; padding: 36px 24px;
  text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--mb-border); transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--mb-primary); }
.service-icon {
  width: var(--icon-size); height: var(--icon-size);
  background: linear-gradient(135deg, var(--mb-primary), #2d7dd2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 40px; color: #fff;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--mb-dark); }
.service-card p { font-size: 14px; color: var(--mb-gray); line-height: 1.6; }

/* ── 통계 섹션 ─────────────────────────────────────────── */
.stats-section { background: linear-gradient(135deg, var(--mb-primary), #2d7dd2); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; color: #fff; animation: countUp .8s ease both; }
.stat-item:nth-child(2) { animation-delay: .1s; }
.stat-item:nth-child(3) { animation-delay: .2s; }
.stat-item:nth-child(4) { animation-delay: .3s; }
.stat-number { font-size: 48px; font-weight: 900; line-height: 1; }
.stat-unit { font-size: 20px; font-weight: 700; }
.stat-label { font-size: 15px; opacity: .85; margin-top: 8px; }

/* ── 페이지 헤더 ───────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--mb-dark) 0%, var(--mb-primary) 100%);
  padding: 60px 0 40px; color: #fff; text-align: center;
}
.page-header h1 { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 14px; opacity: .8; }
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--mb-secondary); }

/* ── 게시판 공통 ───────────────────────────────────────── */
.board-wrap { padding: 60px 0; }
.board-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 12px;
}
.board-search { display: flex; gap: 8px; }
.board-search input {
  padding: 8px 14px; border: 1px solid var(--mb-border); border-radius: 6px;
  font-size: 14px; width: 220px;
}
.board-search button, .btn-write {
  padding: 8px 18px; background: var(--mb-primary); color: #fff;
  border-radius: 6px; font-size: 14px; font-weight: 600;
  transition: background var(--transition);
}
.board-search button:hover, .btn-write:hover { background: #1550a0; }
.btn-write { display: inline-flex; align-items: center; gap: 6px; }

/* 게시판 테이블 */
.board-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.board-table th {
  background: var(--mb-dark); color: #fff; padding: 12px 16px;
  text-align: center; font-weight: 600;
}
.board-table td { padding: 12px 16px; border-bottom: 1px solid var(--mb-border); vertical-align: middle; }
.board-table tr:hover td { background: var(--mb-light); }
.board-table .td-title { text-align: left; }
.board-table .td-title a:hover { color: var(--mb-primary); }
.board-table .td-center { text-align: center; }
.board-table .pin-badge {
  display: inline-block; background: var(--mb-secondary); color: #fff;
  font-size: 11px; padding: 1px 6px; border-radius: 3px; margin-right: 6px;
}
.board-empty { text-align: center; padding: 60px 0; color: var(--mb-gray); font-size: 15px; }

/* 페이지네이션 */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 6px;
  border: 1px solid var(--mb-border); font-size: 14px;
  transition: all var(--transition);
}
.pagination a:hover { background: var(--mb-primary); color: #fff; border-color: var(--mb-primary); }
.pagination .current { background: var(--mb-primary); color: #fff; border-color: var(--mb-primary); font-weight: 700; }

/* 게시물 상세 */
.post-header { border-bottom: 2px solid var(--mb-primary); padding-bottom: 16px; margin-bottom: 24px; }
.post-title { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.post-meta { display: flex; gap: 20px; font-size: 13px; color: var(--mb-gray); }
.post-content { min-height: 200px; line-height: 1.9; padding: 24px 0; border-bottom: 1px solid var(--mb-border); }
.post-nav { display: flex; justify-content: space-between; margin-top: 24px; }
.post-nav a {
  padding: 8px 20px; border: 1px solid var(--mb-border); border-radius: 6px;
  font-size: 14px; transition: all var(--transition);
}
.post-nav a:hover { background: var(--mb-primary); color: #fff; border-color: var(--mb-primary); }

/* ── 폼 공통 ───────────────────────────────────────────── */
.form-wrap { max-width: 760px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-group label .required { color: #e53e3e; margin-left: 2px; }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--mb-border); border-radius: 8px;
  font-size: 15px; transition: border-color var(--transition);
  background: var(--mb-white);
}
.form-control:focus { outline: none; border-color: var(--mb-primary); box-shadow: 0 0 0 3px rgba(26,95,168,.1); }
textarea.form-control { resize: vertical; min-height: 160px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  display: flex; gap: 12px; justify-content: center; margin-top: 32px;
}
.btn-submit {
  padding: 12px 40px; background: var(--mb-primary); color: #fff;
  border-radius: 8px; font-size: 16px; font-weight: 700;
  transition: all var(--transition);
}
.btn-submit:hover { background: #1550a0; transform: translateY(-2px); }
.btn-cancel {
  padding: 12px 32px; border: 1px solid var(--mb-border);
  border-radius: 8px; font-size: 16px; color: var(--mb-gray);
  transition: all var(--transition);
}
.btn-cancel:hover { background: var(--mb-light); }

/* ── FAQ 아코디언 ──────────────────────────────────────── */
.faq-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.faq-filter a {
  padding: 6px 18px; border: 1px solid var(--mb-border); border-radius: 20px;
  font-size: 14px; transition: all var(--transition);
}
.faq-filter a:hover, .faq-filter a.active {
  background: var(--mb-primary); color: #fff; border-color: var(--mb-primary);
}
.faq-item { border: 1px solid var(--mb-border); border-radius: 10px; margin-bottom: 12px; overflow: hidden; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 15px;
  background: var(--mb-white); transition: background var(--transition);
}
.faq-question:hover { background: var(--mb-light); }
.faq-question.open { background: var(--mb-primary); color: #fff; }
.faq-question .faq-icon { font-size: 18px; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 18px 22px; background: var(--mb-light); font-size: 14px; line-height: 1.8; }
.faq-answer.open { display: block; animation: slideIn .2s ease; }

/* ── 갤러리 그리드 ─────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.gallery-card {
  border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition); cursor: pointer;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--mb-light); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover .gallery-thumb img { transform: scale(1.08); }
.gallery-info { padding: 14px 16px; background: var(--mb-white); }
.gallery-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.gallery-info span { font-size: 12px; color: var(--mb-gray); }

/* ── 사이트 푸터 ───────────────────────────────────────── */
.site-footer { background: var(--mb-dark); color: rgba(255,255,255,.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .footer-logo { height: 48px; margin-bottom: 12px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 15px; font-weight: 700; color: #fff; }
.footer-info p { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 14px; }
.footer-info i { color: var(--mb-secondary); width: 16px; }
.footer-links h4 { color: #fff; font-weight: 700; margin-bottom: 14px; font-size: 15px; }
.footer-links a { display: block; font-size: 14px; margin-bottom: 8px; opacity: .75; transition: opacity var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--mb-secondary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13px; opacity: .6; }

/* ── 콘텐츠 페이지 ─────────────────────────────────────── */
.content-section { padding: 60px 0; }
.content-section h2 { font-size: 26px; font-weight: 800; color: var(--mb-primary); margin-bottom: 16px; }
.content-section p { font-size: 15px; line-height: 1.9; color: #444; margin-bottom: 16px; }
.info-box {
  background: var(--mb-light); border-left: 4px solid var(--mb-primary);
  padding: 20px 24px; border-radius: 0 8px 8px 0; margin: 24px 0;
}
.info-box h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--mb-primary); }
.info-box ul { padding-left: 0; }
.info-box ul li { padding: 4px 0 4px 20px; position: relative; font-size: 14px; }
.info-box ul li::before { content: '▶'; position: absolute; left: 0; color: var(--mb-secondary); font-size: 10px; top: 7px; }

.visa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 32px; }
.visa-card {
  background: var(--mb-white); border: 1px solid var(--mb-border); border-radius: 12px;
  padding: 28px 20px; text-align: center; transition: all var(--transition);
}
.visa-card:hover { border-color: var(--mb-primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.visa-card .visa-icon { font-size: 40px; margin-bottom: 14px; color: var(--mb-primary); }
.visa-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.visa-card p { font-size: 13px; color: var(--mb-gray); line-height: 1.6; }

/* ── 지도 ──────────────────────────────────────────────── */
.map-wrap { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }

/* ── 알림 메시지 ───────────────────────────────────────── */
.alert { padding: 14px 20px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ── 반응형 ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .main-nav {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--mb-white); flex-direction: column; align-items: stretch;
    box-shadow: var(--shadow-lg); padding: 12px 0; gap: 0;
  }
  .main-nav.open { display: flex; }
  .nav-item > a { border-radius: 0; border-bottom: 1px solid var(--mb-border); }
  .dropdown { position: static; box-shadow: none; border: none; border-radius: 0; background: var(--mb-light); }
  .nav-item.has-dropdown:hover .dropdown { display: none; }
  .nav-item.has-dropdown.open .dropdown { display: block; }

  .banner-slider { height: 420px; }
  .banner-content { padding: 0 24px; }
  .banner-title { font-size: 26px; }
  .banner-sub { font-size: 15px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .board-toolbar { flex-direction: column; align-items: flex-start; }
  .board-table { font-size: 13px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .banner-btns { flex-direction: column; }
  .topbar-left { display: none; }
  .stat-number { font-size: 36px; }
}
