*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 1.6; color: #333; background: #f1f1f1; }

/* HEADER HERO */
.site-header { position: relative; width: 100%; min-height: 280px; overflow: hidden; background: #2d0030; display: flex; align-items: center; justify-content: flex-start; }
.site-header-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #4a0050 0%, #8b1060 30%, #c41040 60%, #6b1080 100%); opacity: 0.85; }
.site-header-inner { position: relative; z-index: 2; padding: 40px 60px; }
.site-header-logo { display: inline-block; border: 2px solid white; padding: 16px 32px; transform: skew(-5deg); }
.site-header-logo span { display: block; transform: skew(5deg); }
.site-header-logo .small { font-size: 14px; font-weight: 400; letter-spacing: 3px; color: white; text-transform: uppercase; margin-bottom: 4px; }
.site-header-logo .big { font-size: 42px; font-weight: 900; letter-spacing: 2px; color: white; text-transform: uppercase; font-family: 'Arial Black', Arial, sans-serif; }

/* TITLE BAR */
.title-bar { background: #1a1a1a; padding: 12px 32px; display: flex; align-items: center; justify-content: space-between; }
.title-bar .site-name { color: white; font-weight: 700; font-size: 15px; }
.search-btn { background: #41a62a; color: white; border: none; padding: 6px 12px; cursor: pointer; font-size: 16px; }

/* NAVIGATION */
.site-nav { background: #1a1a1a; border-top: 1px solid #333; }
.site-nav ul { max-width: 1260px; margin: 0 auto; padding: 0 32px; display: flex; list-style: none; flex-wrap: wrap; }
.site-nav a { display: block; color: rgba(255,255,255,0.85); text-decoration: none; padding: 10px 14px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; transition: color 0.2s; }
.site-nav a:hover, .site-nav a.active { color: #41a62a; }

/* BREADCRUMB */
.breadcrumb { background: #1a1a1a; padding: 6px 32px; }
.breadcrumb span { color: rgba(255,255,255,0.6); font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; }

/* MAIN LAYOUT */
.site-main { max-width: 1260px; margin: 24px auto; padding: 0 32px; display: flex; gap: 32px; }
.content-area { flex: 1; min-width: 0; }
.sidebar { width: 280px; flex-shrink: 0; }

/* POSTS */
.post { background: white; margin-bottom: 24px; padding: 28px 32px; }
.post-title { font-family: Georgia, 'Times New Roman', serif; font-size: 28px; font-weight: 300; letter-spacing: -0.5px; color: #1a1a1a; margin-bottom: 8px; line-height: 1.2; }
.post-title a { color: #1a1a1a; text-decoration: none; }
.post-title a:hover { color: #41a62a; }
.post-meta { font-size: 12px; color: #767676; margin-bottom: 16px; display: flex; align-items: center; gap: 6px; }
.post-meta::before { content: "⏱"; font-size: 11px; }
.post-content { font-size: 14px; line-height: 1.7; color: #333; }
.post-content p { margin-bottom: 12px; }
.post-content img { max-width: 100%; height: auto; margin: 12px 0; }
.post-thumbnail { margin-bottom: 20px; }
.post-thumbnail img { width: 100%; max-height: 400px; object-fit: cover; }
.read-more { display: inline-block; color: #41a62a; font-size: 13px; font-weight: 700; text-decoration: none; margin-top: 8px; }
.read-more:hover { text-decoration: underline; }

/* PAGE CONTENT */
.page-content { background: white; padding: 32px; margin-bottom: 24px; }
.page-content h1 { font-family: Georgia, serif; font-size: 32px; font-weight: 300; color: #1a1a1a; margin-bottom: 24px; letter-spacing: -0.5px; }
.page-content h2 { font-size: 20px; color: #1a1a1a; margin: 24px 0 12px; font-weight: 700; }
.page-content p { margin-bottom: 14px; font-size: 14px; line-height: 1.7; }
.page-content a { color: #41a62a; }
.page-content ul { margin: 10px 0 14px 20px; }
.page-content li { margin-bottom: 5px; font-size: 14px; }
.page-content ol { margin: 10px 0 14px 20px; }

/* SIDEBAR */
.widget { background: white; padding: 20px; margin-bottom: 20px; }
.widget-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #1a1a1a; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid #1a1a1a; }
.widget ul { list-style: none; }
.widget ul li { padding: 7px 0; border-bottom: 1px solid #e5e5e5; font-size: 14px; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: #41a62a; text-decoration: none; }
.widget ul li a:hover { text-decoration: underline; }
.widget-event { padding: 12px 0; border-bottom: 1px dashed #ccc; }
.widget-event:last-child { border-bottom: none; }
.widget-event-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #1a1a1a; margin-bottom: 6px; }
.widget-event-date { font-size: 13px; color: #333; margin-bottom: 2px; }
.widget-event-place { font-size: 13px; color: #555; }

/* TABLES */
.article-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.article-table th { background: #41a62a; color: white; padding: 10px 12px; text-align: left; font-size: 12px; text-transform: uppercase; }
.article-table td { padding: 9px 12px; border-bottom: 1px solid #e0e0e0; }
.article-table tr:nth-child(even) td { background: #f9f9f9; }

/* FAQ */
.faq-item { margin-bottom: 16px; }
.faq-item h3 { font-size: 15px; color: #1a1a1a; margin-bottom: 0; padding: 10px 14px; background: #f5f5f5; border-left: 3px solid #41a62a; }
.faq-item p { font-size: 14px; padding: 10px 14px; background: #fff; border: 1px solid #e8e8e8; border-top: none; margin: 0; }

/* FOOTER */
.site-footer { background: #1a1a1a; color: rgba(255,255,255,0.5); text-align: center; padding: 20px 32px; margin-top: 32px; font-size: 13px; }
.site-footer a { color: #41a62a; text-decoration: none; }

/* 404 */
.error-404 { background: white; padding: 60px 32px; text-align: center; }
.error-404 .big-404 { font-size: 100px; font-weight: 900; color: #41a62a; line-height: 1; }
.error-404 h2 { font-size: 22px; margin: 16px 0 24px; }
.btn-back { display: inline-block; background: #41a62a; color: white; padding: 10px 24px; text-decoration: none; font-weight: 700; font-size: 14px; }
.btn-back:hover { background: #2d7a1e; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-main { flex-direction: column; padding: 0 16px; }
  .sidebar { width: 100%; }
  .site-nav ul { flex-wrap: wrap; padding: 0 16px; }
  .site-nav a { padding: 8px 10px; font-size: 11px; }
  .site-header-logo .big { font-size: 28px; }
  .site-header-inner { padding: 24px; }
  .title-bar { padding: 10px 16px; }
}
