/*
Theme Name: 목성호수 (Jupiter Lake)
Theme URI: https://example.com
Author: Jupiter Lake Community
Author URI: https://example.com
Description: 목성호수 디스코드 커뮤니티 홍보 웹사이트
Version: 2.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jupiter-lake
Domain Path: /languages
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');

/* Root Styles */
:root {
  --primary-color: #6b4423;
  --secondary-color: #8b6f47;/*
Theme Name: 목성호수 (Jupiter Lake)
Theme URI: https://example.com
Author: Jupiter Lake Community
Author URI: https://example.com
Description: 목성호수 디스코드 커뮤니티 홍보 웹사이트
Version: 2.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jupiter-lake
Domain Path: /languages
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap');

/* Root Styles */
:root {
  --primary-color: #6b4423;
  --secondary-color: #8b6f47;
  --accent-color: #c9a876;
  --light-bg: rgba(255, 255, 255, 0.5);
  --glass-border: 1px solid rgba(180, 120, 80, 0.2);
  --font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: var(--font-family);
  color: var(--secondary-color);
  background-color: #f5f1ed;
}

body {
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-family: var(--font-family);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--secondary-color);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   HEADER & NAVIGATION STYLES
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 120, 80, 0.2);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-branding img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.site-branding a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 51;
}

.mobile-menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 1.5rem;
  height: 1.25rem;
}

.mobile-menu-toggle .hamburger span {
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--primary-color);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Main Navigation */
.main-navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 120, 80, 0.2);
  padding: 1rem 0;
}

.main-navigation.active {
  display: block;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.main-navigation ul li {
  border-bottom: 1px solid rgba(180, 120, 80, 0.1);
}

.main-navigation ul li:last-child {
  border-bottom: none;
}

.main-navigation ul li a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--secondary-color);
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.main-navigation ul li a:hover {
  background-color: rgba(180, 120, 80, 0.1);
  opacity: 1;
}

/* Tablet & Desktop Navigation */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .site-header {
    padding: 1rem 0;
  }

  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main-navigation {
    display: flex !important;
    position: static;
    background: transparent;
    border-bottom: none;
    padding: 0;
  }

  .main-navigation ul {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    list-style: none;
  }

  .main-navigation ul li {
    border-bottom: none;
  }

  .main-navigation ul li a {
    padding: 0;
    font-size: 0.875rem;
    color: var(--secondary-color);
  }

  .main-navigation ul li a:hover {
    background-color: transparent;
    opacity: 0.8;
  }
}

/* ============================================
   CONTENT STYLES
   ============================================ */

.site-main {
  padding-top: 5rem;
}

.entry-header {
  padding: 2rem 1rem;
  text-align: center;
}

.entry-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .entry-title {
    font-size: 3rem;
  }
}

.entry-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.entry-content p {
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  text-align: center;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663570997147/8p8R8bMytSsQDyyALcbkNf/jupiter-logo-colors-bg-XhZ3bQ4hR5symnDuk85QRL.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 120, 80, 0.3);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--secondary-color);
}

.hero-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 0.875rem;
  margin-bottom: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background: rgba(180, 120, 80, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 120, 80, 0.4);
  color: var(--primary-color);
  transition: all 0.2s ease;
}

.hero-cta:hover {
  transform: scale(1.05);
}

.hero-cta:active {
  transform: scale(0.95);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    gap: 2rem;
  }
}

.stat-card {
  padding: 1.5rem 2rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 150, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-0.5rem);
}

.stat-number {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--secondary-color);
}

/* Section */
section {
  position: relative;
  padding: 5rem 1rem;
}

@media (min-width: 768px) {
  section {
    padding: 8rem 0;
  }
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.125rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Features Section */
.features-section {
  background-color: #ffffff !important;
  background-image: none !important;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  padding: 1.5rem 2rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 150, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Highlights Section */
.highlights-section {
  background-color: #ffffff !important;
  background-image: none !important;
}

/* Highlight Grid */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.highlight-card {
  padding: 1.5rem 2rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 150, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-0.5rem);
}

.highlight-emoji {
  font-size: 3.125rem;
  margin-bottom: 1rem;
}

.highlight-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.highlight-description {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 1.5rem 2rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 150, 255, 0.2);
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  background: rgba(180, 120, 80, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 120, 80, 0.4);
  color: var(--primary-color);
  transition: all 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-button:active {
  transform: scale(0.95);
}

/* Footer */
.site-footer {
  padding: 3rem 1rem;
  border-top: 1px solid rgba(180, 120, 80, 0.2);
  background: rgba(255, 255, 255, 0.3);
  text-align: center;
  color: var(--secondary-color);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-copyright {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.6;
}

/* Post & Page Styles */
.entry-meta {
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(180, 120, 80, 0.2);
  border-radius: 0.5rem;
  color: var(--primary-color);
  transition: all 0.2s ease;
}

.read-more:hover {
  background: rgba(180, 120, 80, 0.3);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(180, 120, 80, 0.2);
  color: var(--secondary-color);
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: rgba(180, 120, 80, 0.2);
}

.pagination .current {
  background: rgba(180, 120, 80, 0.4);
  color: var(--primary-color);
}

.no-posts {
  text-align: center;
  padding: 3rem 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-main {
    padding-top: 6rem;
  }

  .entry-header {
    padding: 1.5rem 1rem;
  }

.entry-title {
    font-size: 1.5rem;
  }
}

/* 포스트 메타 숨김 */
.entry-meta,
.posted-on,
.post-date {
  display: none !important;
}
  --accent-color: #c9a876;
  --light-bg: rgba(255, 255, 255, 0.5);
  --glass-border: 1px solid rgba(180, 120, 80, 0.2);
  --font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: var(--font-family);
  color: var(--secondary-color);
  background-color: #f5f1ed;
}

body {
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--primary-color);
  font-family: var(--font-family);
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--secondary-color);
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   HEADER & NAVIGATION STYLES
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 120, 80, 0.2);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-branding img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.site-branding a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 51;
}

.mobile-menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  width: 1.5rem;
  height: 1.25rem;
}

.mobile-menu-toggle .hamburger span {
  display: block;
  width: 100%;
  height: 0.1875rem;
  background-color: var(--primary-color);
  border-radius: 0.125rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

/* Main Navigation */
.main-navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 120, 80, 0.2);
  padding: 1rem 0;
}

.main-navigation.active {
  display: block;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.main-navigation ul li {
  border-bottom: 1px solid rgba(180, 120, 80, 0.1);
}

.main-navigation ul li:last-child {
  border-bottom: none;
}

.main-navigation ul li a {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--secondary-color);
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.main-navigation ul li a:hover {
  background-color: rgba(180, 120, 80, 0.1);
  opacity: 1;
}

/* Tablet & Desktop Navigation */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .site-header {
    padding: 1rem 0;
  }

  .header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main-navigation {
    display: flex !important;
    position: static;
    background: transparent;
    border-bottom: none;
    padding: 0;
  }

  .main-navigation ul {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    list-style: none;
  }

  .main-navigation ul li {
    border-bottom: none;
  }

  .main-navigation ul li a {
    padding: 0;
    font-size: 0.875rem;
    color: var(--secondary-color);
  }

  .main-navigation ul li a:hover {
    background-color: transparent;
    opacity: 0.8;
  }
}

/* ============================================
   CONTENT STYLES
   ============================================ */

.site-main {
  padding-top: 5rem;
}

.entry-header {
  padding: 2rem 1rem;
  text-align: center;
}

.entry-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .entry-title {
    font-size: 3rem;
  }
}

.entry-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.entry-content p {
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  text-align: center;
  background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663570997147/8p8R8bMytSsQDyyALcbkNf/jupiter-logo-colors-bg-XhZ3bQ4hR5symnDuk85QRL.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 120, 80, 0.3);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--secondary-color);
}

.hero-title {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 0.875rem;
  margin-bottom: 3rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  background: rgba(180, 120, 80, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 120, 80, 0.4);
  color: var(--primary-color);
  transition: all 0.2s ease;
}

.hero-cta:hover {
  transform: scale(1.05);
}

.hero-cta:active {
  transform: scale(0.95);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    gap: 2rem;
  }
}

.stat-card {
  padding: 1.5rem 2rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 150, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-0.5rem);
}

.stat-number {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--secondary-color);
}

/* Section */
section {
  position: relative;
  padding: 5rem 1rem;
}

@media (min-width: 768px) {
  section {
    padding: 8rem 0;
  }
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.125rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 56rem;
  margin: 0 auto 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Features Section */
.features-section {
  background-color: #ffffff !important;
  background-image: none !important;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.feature-card {
  padding: 1.5rem 2rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 150, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-0.5rem);
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-description {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Highlights Section */
.highlights-section {
  background-color: #ffffff !important;
  background-image: none !important;
}

/* Highlight Grid */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .highlight-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.highlight-card {
  padding: 1.5rem 2rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 150, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-0.5rem);
}

.highlight-emoji {
  font-size: 3.125rem;
  margin-bottom: 1rem;
}

.highlight-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.highlight-description {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 1.5rem 2rem;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 150, 255, 0.2);
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 9999px;
  background: rgba(180, 120, 80, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 120, 80, 0.4);
  color: var(--primary-color);
  transition: all 0.2s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

.cta-button:active {
  transform: scale(0.95);
}

/* Footer */
.site-footer {
  padding: 3rem 1rem;
  border-top: 1px solid rgba(180, 120, 80, 0.2);
  background: rgba(255, 255, 255, 0.3);
  text-align: center;
  color: var(--secondary-color);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-copyright {
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.6;
}

/* Post & Page Styles */
.entry-meta {
  font-size: 0.875rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(180, 120, 80, 0.2);
  border-radius: 0.5rem;
  color: var(--primary-color);
  transition: all 0.2s ease;
}

.read-more:hover {
  background: rgba(180, 120, 80, 0.3);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(180, 120, 80, 0.2);
  color: var(--secondary-color);
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: rgba(180, 120, 80, 0.2);
}

.pagination .current {
  background: rgba(180, 120, 80, 0.4);
  color: var(--primary-color);
}

.no-posts {
  text-align: center;
  padding: 3rem 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-main {
    padding-top: 6rem;
  }

  .entry-header {
    padding: 1.5rem 1rem;
  }

.entry-title {
    font-size: 1.5rem;
  }
}

/* 포스트 메타 숨김 */
.entry-meta,
.posted-on,
.post-date {
  display: none !important;
}
