/*
Theme Name: Flavor
Theme URI: https://ggulgle.com
Author: ggulgle
Author URI: https://ggulgle.com
Description: SEO 최적화, 광고 지원, 프리미엄 디자인의 초경량 블로그 테마. GeneratePress 스타일의 빠르고 아름다운 테마입니다.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flavor
Tags: blog, custom-colors, custom-logo, custom-menu, featured-images, one-column, two-columns, right-sidebar, translation-ready
*/

/* ===== CSS Custom Properties ===== */
:root {
  --c-primary: #2563eb;
  --c-primary-h: #1d4ed8;
  --c-primary-l: #dbeafe;
  --c-text: #1e293b;
  --c-text-2: #475569;
  --c-text-3: #94a3b8;
  --c-bg: #fff;
  --c-bg-2: #f8fafc;
  --c-bg-3: #f1f5f9;
  --c-border: #e2e8f0;
  --c-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --c-shadow-lg: 0 10px 15px -3px rgba(0,0,0,.07), 0 4px 6px -4px rgba(0,0,0,.05);
  --font: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, 'Noto Sans KR', sans-serif;
  --fs: 17px;
  --lh: 1.8;
  --max-w: 1200px;
  --content-w: 780px;
  --sidebar-w: 320px;
  --gap: 40px;
  --radius: 12px;
  --header-h: 64px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: var(--fs); scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); line-height: var(--lh); color: var(--c-text); background: var(--c-bg-2); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-primary-h); }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }
::selection { background: var(--c-primary-l); color: var(--c-primary-h); }
:focus-visible { outline: 2px solid var(--c-primary); outline-offset: 2px; }
.hidden { display: none !important; }

/* ===== Layout ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.site-content { display: flex; gap: var(--gap); padding: 30px 0 60px; }
.content-area { flex: 1; min-width: 0; }
.sidebar-area { width: var(--sidebar-w); flex-shrink: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; top: -100px; left: 0; z-index: 9999; background: var(--c-primary); color: #fff; padding: 8px 16px; font-size: 14px; }
.skip-link:focus { top: 0; }

/* ===== Header ===== */
.site-header { background: var(--c-bg); border-bottom: 1px solid var(--c-border); position: sticky; top: 0; z-index: 100; transition: box-shadow .3s; }
.site-header.scrolled { box-shadow: var(--c-shadow); }
.header-inner { display: flex; align-items: center; height: var(--header-h); gap: 24px; }
.site-branding { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-branding .custom-logo { max-height: 36px; width: auto; }
.site-title { font-size: 1.25rem; font-weight: 700; color: var(--c-text); line-height: 1.2; }
.site-title a { color: inherit; }
.site-title a:hover { color: var(--c-primary); }
.site-description { font-size: .75rem; color: var(--c-text-3); margin-top: 2px; }

/* Navigation */
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav li { position: relative; }
.main-nav a { display: block; padding: 8px 16px; font-size: .9rem; font-weight: 500; color: var(--c-text-2); border-radius: 8px; transition: all .2s; }
.main-nav a:hover, .main-nav .current-menu-item > a { background: var(--c-bg-3); color: var(--c-text); }
.main-nav .sub-menu { position: absolute; top: 100%; left: 0; background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 8px; min-width: 200px; box-shadow: var(--c-shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s; z-index: 50; }
.main-nav li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu a { font-size: .85rem; padding: 8px 12px; white-space: nowrap; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-search-toggle { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; color: var(--c-text-3); transition: all .2s; }
.header-search-toggle:hover { background: var(--c-bg-3); color: var(--c-text); }

/* Mobile menu toggle */
.menu-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 8px; color: var(--c-text-2); }
.menu-toggle span { display: block; width: 20px; height: 2px; background: currentColor; position: relative; transition: .3s; }
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; width: 20px; height: 2px; background: currentColor; transition: .3s; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

/* Mobile overlay & menu */
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 200; opacity: 0; visibility: hidden; transition: .3s; }
.mobile-overlay.active { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 85vw; background: var(--c-bg); z-index: 201; transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); overflow-y: auto; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--c-border); }
.mobile-menu-header span { font-weight: 700; font-size: 1rem; }
.mobile-menu-close { font-size: 1.5rem; color: var(--c-text-3); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.mobile-menu-close:hover { background: var(--c-bg-3); }
.mobile-nav { padding: 12px; }
.mobile-nav a { display: block; padding: 12px 16px; font-size: .95rem; font-weight: 500; color: var(--c-text-2); border-radius: 8px; }
.mobile-nav a:active, .mobile-nav a:hover { background: var(--c-bg-3); color: var(--c-text); }
.mobile-nav .sub-menu { padding-left: 16px; }
.mobile-nav .sub-menu a { font-size: .875rem; color: var(--c-text-3); }

/* Reading progress bar */
.reading-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--c-primary); z-index: 9999; transition: width .1s linear; width: 0; }

/* ===== Ad Areas ===== */
.ad-area { text-align: center; margin: 24px 0; overflow: hidden; }
.ad-area-header_banner { margin: 0; padding: 16px 0; background: var(--c-bg); }
.ad-area-sidebar_top, .ad-area-sidebar_sticky { margin-bottom: 24px; }
.ad-area ins { max-width: 100%; }

/* ===== Breadcrumbs ===== */
.breadcrumbs { font-size: .8rem; color: var(--c-text-3); padding: 16px 0 0; }
.breadcrumbs a { color: var(--c-text-3); }
.breadcrumbs a:hover { color: var(--c-primary); }
.breadcrumbs .sep { margin: 0 6px; opacity: .5; }

/* ===== Archive / Index ===== */
.archive-header { padding: 30px 0 10px; }
.archive-title { font-size: 1.5rem; font-weight: 700; }
.archive-desc { color: var(--c-text-2); margin-top: 4px; font-size: .95rem; }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* Post Card */
.post-card { background: var(--c-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--c-shadow); transition: transform .2s, box-shadow .2s; }
.post-card:hover { transform: translateY(-2px); box-shadow: var(--c-shadow-lg); }
.post-card-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--c-bg-3); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.post-card:hover .post-card-thumb img { transform: scale(1.03); }
.post-card-cat { position: absolute; top: 12px; left: 12px; background: var(--c-primary); color: #fff; font-size: .7rem; font-weight: 600; padding: 4px 10px; border-radius: 6px; }
.post-card-body { padding: 20px; }
.post-card-title { font-size: 1.1rem; font-weight: 700; line-height: 1.45; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-card-title a { color: var(--c-text); }
.post-card-title a:hover { color: var(--c-primary); }
.post-card-excerpt { font-size: .875rem; color: var(--c-text-2); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 12px; }
.post-card-meta { display: flex; align-items: center; gap: 12px; font-size: .75rem; color: var(--c-text-3); }
.post-card-meta span { display: flex; align-items: center; gap: 4px; }
.post-card-thumb.no-thumb { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c-bg-3), var(--c-border)); }
.post-card-thumb.no-thumb::after { content: '\270D'; font-size: 2rem; opacity: .3; }

/* ===== Pagination ===== */
.navigation.pagination { padding: 40px 0; }
.navigation.pagination .nav-links { display: flex; justify-content: center; gap: 6px; }
.page-numbers { display: flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px; font-size: .875rem; font-weight: 500; color: var(--c-text-2); background: var(--c-bg); box-shadow: var(--c-shadow); transition: all .2s; }
a.page-numbers:hover { background: var(--c-primary); color: #fff; }
.page-numbers.current { background: var(--c-primary); color: #fff; }

/* ===== Single Post ===== */
.single-header { padding: 10px 0 24px; }
.single-cat { display: inline-block; background: var(--c-primary-l); color: var(--c-primary); font-size: .8rem; font-weight: 600; padding: 4px 12px; border-radius: 6px; margin-bottom: 12px; }
.single-title { font-size: 2rem; font-weight: 800; line-height: 1.35; letter-spacing: -.02em; }
.single-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 16px; font-size: .85rem; color: var(--c-text-3); }
.single-meta span { display: flex; align-items: center; gap: 5px; }
.single-featured { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; }
.single-featured img { width: 100%; }

/* Post Content Typography */
.post-content { font-size: 1.05rem; line-height: var(--lh); color: var(--c-text); }
.post-content p { margin-bottom: 1.5em; }
.post-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2.5em 0 .8em; padding-bottom: .3em; border-bottom: 2px solid var(--c-bg-3); letter-spacing: -.01em; }
.post-content h3 { font-size: 1.25rem; font-weight: 700; margin: 2em 0 .6em; }
.post-content h4 { font-size: 1.1rem; font-weight: 600; margin: 1.5em 0 .5em; }
.post-content ul, .post-content ol { margin: .5em 0 1.5em 1.5em; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: .4em; line-height: 1.75; }
.post-content blockquote { border-left: 4px solid var(--c-primary); background: var(--c-bg-2); padding: 20px 24px; margin: 1.5em 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--c-text-2); }
.post-content blockquote p:last-child { margin-bottom: 0; }
.post-content img { border-radius: 8px; margin: 1em 0; }
.post-content a { color: var(--c-primary); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.post-content a:hover { text-decoration-thickness: 2px; }
.post-content pre { background: #1e293b; color: #e2e8f0; padding: 20px; border-radius: var(--radius); overflow-x: auto; font-size: .875rem; line-height: 1.6; margin: 1.5em 0; }
.post-content code { background: var(--c-bg-3); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.post-content pre code { background: none; padding: 0; border-radius: 0; }
.post-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: .95rem; }
.post-content th, .post-content td { padding: 10px 14px; border: 1px solid var(--c-border); text-align: left; }
.post-content th { background: var(--c-bg-3); font-weight: 600; }
.post-content figure { margin: 1.5em 0; }
.post-content figcaption { font-size: .8rem; color: var(--c-text-3); text-align: center; margin-top: 8px; }
.post-content strong { font-weight: 600; color: var(--c-text); }
.post-content hr { border: none; border-top: 1px solid var(--c-border); margin: 2em 0; }

/* Tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 32px 0; }
.post-tags a { display: inline-block; padding: 6px 14px; background: var(--c-bg-3); color: var(--c-text-2); font-size: .8rem; font-weight: 500; border-radius: 20px; transition: all .2s; }
.post-tags a:hover { background: var(--c-primary-l); color: var(--c-primary); }

/* Share buttons */
.share-buttons { display: flex; gap: 8px; margin: 24px 0; }
.share-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; color: #fff; font-size: .9rem; font-weight: 700; transition: transform .2s; }
.share-btn:hover { transform: scale(1.08); color: #fff; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #0f1419; }
.share-btn.kakao { background: #fee500; color: #3c1e1e; }
.share-btn.link-copy { background: var(--c-text-3); }

/* Author box */
.author-box { display: flex; gap: 20px; padding: 24px; background: var(--c-bg-2); border-radius: var(--radius); margin: 32px 0; }
.author-avatar { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info { flex: 1; }
.author-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.author-bio { font-size: .875rem; color: var(--c-text-2); line-height: 1.65; }

/* Related posts */
.related-posts { margin: 40px 0; }
.related-posts-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { background: var(--c-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--c-shadow); transition: transform .2s; }
.related-card:hover { transform: translateY(-2px); }
.related-card-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--c-bg-3); }
.related-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-card-body { padding: 14px; }
.related-card-title { font-size: .9rem; font-weight: 600; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.related-card-title a { color: var(--c-text); }
.related-card-title a:hover { color: var(--c-primary); }
.related-card-date { font-size: .75rem; color: var(--c-text-3); margin-top: 6px; }

/* Table of Contents */
.toc { background: var(--c-bg-2); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 20px 24px; margin: 0 0 32px; }
.toc summary { font-weight: 700; font-size: .95rem; cursor: pointer; display: flex; align-items: center; gap: 6px; list-style: none; user-select: none; }
.toc summary::-webkit-details-marker { display: none; }
.toc[open] summary { margin-bottom: 12px; }
.toc-list { list-style: none; margin: 0; padding: 0; }
.toc-list li { margin-bottom: 4px; }
.toc-list a { font-size: .875rem; color: var(--c-text-2); display: block; padding: 5px 0 5px 12px; border-left: 2px solid transparent; transition: all .2s; }
.toc-list a:hover, .toc-list a.active { color: var(--c-primary); border-left-color: var(--c-primary); }
.toc-list .toc-h3 { padding-left: 28px; font-size: .825rem; }

/* ===== Sidebar ===== */
.widget { background: var(--c-bg); border-radius: var(--radius); padding: 24px; box-shadow: var(--c-shadow); margin-bottom: 24px; }
.widget-title { font-size: 1rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--c-bg-3); }
.widget ul { list-style: none; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--c-bg-3); font-size: .9rem; }
.widget li:last-child { border-bottom: none; }
.widget li a { color: var(--c-text-2); }
.widget li a:hover { color: var(--c-primary); }
.widget select { width: 100%; padding: 8px 12px; border: 1px solid var(--c-border); border-radius: 8px; font-size: .9rem; }
.search-form { display: flex; gap: 8px; }
.search-form input[type="search"] { flex: 1; padding: 10px 14px; border: 1px solid var(--c-border); border-radius: 8px; font-size: .9rem; background: var(--c-bg-2); outline: none; transition: border .2s; }
.search-form input[type="search"]:focus { border-color: var(--c-primary); }
.search-form button { padding: 10px 16px; background: var(--c-primary); color: #fff; border-radius: 8px; font-weight: 600; font-size: .85rem; transition: background .2s; border: none; }
.search-form button:hover { background: var(--c-primary-h); }
.sidebar-sticky { position: sticky; top: calc(var(--header-h) + 20px); }

/* ===== Comments ===== */
.comments-area { margin-top: 40px; }
.comments-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.comment-list { list-style: none; }
.comment { padding: 20px 0; border-bottom: 1px solid var(--c-bg-3); }
.comment-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment-avatar { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; }
.comment-avatar img { width: 100%; height: 100%; object-fit: cover; }
.comment-author { font-weight: 600; font-size: .9rem; }
.comment-date { font-size: .8rem; color: var(--c-text-3); }
.comment-body p { font-size: .925rem; line-height: 1.7; color: var(--c-text-2); }
.comment-reply-link { font-size: .8rem; color: var(--c-primary); font-weight: 500; margin-top: 6px; display: inline-block; }
.comment .children { margin-left: 40px; list-style: none; }
.comment-form { margin-top: 32px; }
.comment-form label { display: block; font-size: .875rem; font-weight: 600; margin-bottom: 6px; color: var(--c-text); }
.comment-form input, .comment-form textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--c-border); border-radius: 8px; font-size: .9rem; background: var(--c-bg-2); outline: none; transition: border .2s; margin-bottom: 16px; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--c-primary); }
.comment-form textarea { resize: vertical; min-height: 120px; }
.comment-form .submit { padding: 12px 28px; background: var(--c-primary); color: #fff; border: none; border-radius: 8px; font-weight: 600; font-size: .9rem; cursor: pointer; transition: background .2s; }
.comment-form .submit:hover { background: var(--c-primary-h); }

/* ===== Footer ===== */
.site-footer { background: #0f172a; color: #cbd5e1; margin-top: 40px; }
.footer-widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 60px 0 40px; }
.footer-widget-title { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 16px; }
.footer-widget ul { list-style: none; }
.footer-widget li { margin-bottom: 8px; }
.footer-widget a { color: #94a3b8; font-size: .875rem; transition: color .2s; }
.footer-widget a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e293b; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: #64748b; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 8px; background: #1e293b; color: #94a3b8; transition: all .2s; font-size: .85rem; font-weight: 600; }
.footer-social a:hover { background: var(--c-primary); color: #fff; }

/* ===== 404 ===== */
.error-404 { text-align: center; padding: 80px 0; }
.error-404 h1 { font-size: 5rem; font-weight: 800; color: var(--c-primary); margin-bottom: 12px; }
.error-404 p { font-size: 1.1rem; color: var(--c-text-2); margin-bottom: 24px; }
.error-404 .btn { display: inline-block; padding: 12px 28px; background: var(--c-primary); color: #fff; border-radius: 8px; font-weight: 600; transition: background .2s; }
.error-404 .btn:hover { background: var(--c-primary-h); color: #fff; }

/* Back to top */
.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--c-bg); color: var(--c-text-2); border-radius: 50%; box-shadow: var(--c-shadow-lg); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; z-index: 50; border: 1px solid var(--c-border); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ===== Responsive — Tablet ===== */
@media (max-width: 1024px) {
  :root { --gap: 30px; --sidebar-w: 280px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .site-content { flex-direction: column; }
  .sidebar-area { width: 100%; }
  .footer-widgets { grid-template-columns: repeat(2, 1fr); }
  .post-grid { gap: 20px; }
}

/* ===== Responsive — Mobile ===== */
@media (max-width: 640px) {
  :root { --fs: 16px; --header-h: 56px; --radius: 10px; }
  .container { padding: 0 16px; }
  .main-nav, .header-search-toggle { display: none; }
  .menu-toggle { display: flex; }
  .post-grid { grid-template-columns: 1fr; }
  .single-title { font-size: 1.5rem; }
  .post-content h2 { font-size: 1.3rem; }
  .post-content h3 { font-size: 1.1rem; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-widgets { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .comment .children { margin-left: 20px; }
  .site-content { padding: 20px 0 40px; }
  .share-btn { width: 36px; height: 36px; font-size: .8rem; }
  .back-to-top { bottom: 16px; right: 16px; width: 40px; height: 40px; }
}

/* ===== Print ===== */
@media print {
  .site-header, .site-footer, .sidebar-area, .share-buttons, .related-posts, .comments-area, .ad-area, .back-to-top, .reading-progress, .breadcrumbs, .menu-toggle, .mobile-menu, .mobile-overlay { display: none !important; }
  .site-content { display: block; }
  body { color: #000; background: #fff; font-size: 12pt; }
}
