/*
Theme Name: dercomputerladen
Theme URI: https://dercomputerladen.de
Author: dercomputerladen
Author URI: https://dercomputerladen.de
Description: Modernes WordPress-Theme für dercomputerladen Oschatz & Dresden. Schwarz-Orange Design mit Gutenberg-Unterstützung, Newsbereich und vollständiger Block-Editor-Kompatibilität.
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: dercomputerladen
Tags: dark, orange, technology, gutenberg, block-editor, responsive
*/

/* ════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
════════════════════════════════════════════ */
:root {
  --dcl-black:   #0a0a0a;
  --dcl-dark:    #111214;
  --dcl-card:    #18191d;
  --dcl-border:  #2e2b28;
  --dcl-accent:  #ff6a00;
  --dcl-accent2: #ff9a3c;
  --dcl-text:    #e8e9ed;
  --dcl-muted:   #8a8c96;
  --dcl-white:   #ffffff;
  --dcl-radius:  10px;
  --dcl-font-head: 'Syne', sans-serif;
  --dcl-font-body: 'DM Sans', sans-serif;
}

/* ════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dcl-black);
  color: var(--dcl-text);
  font-family: var(--dcl-font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--dcl-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dcl-accent2); }
ul { list-style: none; }

/* ════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--dcl-font-head);
  color: var(--dcl-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin-bottom: 1rem; color: var(--dcl-muted); line-height: 1.7; }
p:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--dcl-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
.site-branding a {
  font-family: var(--dcl-font-head);
  font-weight: 800; font-size: 1.15rem;
  color: var(--dcl-white); letter-spacing: -0.02em;
}
.site-branding a span { color: var(--dcl-accent); }

.main-navigation ul {
  display: flex; gap: 32px;
}
.main-navigation ul a {
  color: var(--dcl-muted); font-size: 0.9rem; font-weight: 500;
}
.main-navigation ul a:hover { color: var(--dcl-white); }
.main-navigation ul .current-menu-item a { color: var(--dcl-white); }

.header-cta a {
  background: var(--dcl-accent); color: var(--dcl-black) !important;
  padding: 8px 20px; border-radius: 6px;
  font-weight: 700; font-size: 0.88rem;
  transition: opacity .2s, transform .2s;
}
.header-cta a:hover { opacity: 0.85; transform: translateY(-1px); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dcl-white); border-radius: 2px;
  transition: all .3s;
}

/* ════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-gradient {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,106,0,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(255,154,60,0.07) 0%, transparent 60%);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--dcl-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--dcl-border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  opacity: 0.3;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,106,0,0.1); border: 1px solid rgba(255,106,0,0.25);
  color: var(--dcl-accent); padding: 6px 16px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before { content: '●'; font-size: 0.55rem; }
.hero-section h1 {
  animation: fadeUp 0.6s 0.1s ease both;
  color: var(--dcl-white);
}
.hero-section h1 em {
  font-style: normal; color: var(--dcl-accent);
  position: relative;
}
.hero-sub {
  margin-top: 20px; font-size: 1.1rem; color: var(--dcl-muted);
  max-width: 500px; line-height: 1.75;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
  margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
  background: var(--dcl-accent); color: var(--dcl-black) !important;
  padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; display: inline-block;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(255,106,0,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,106,0,0.3);
  color: var(--dcl-black) !important;
}
.btn-ghost {
  border: 1px solid var(--dcl-border); color: var(--dcl-text) !important;
  padding: 14px 28px; border-radius: 8px;
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none; display: inline-block;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover {
  border-color: var(--dcl-accent);
  color: var(--dcl-accent) !important;
}
.btn-outline {
  border: 1px solid rgba(255,106,0,0.3); color: var(--dcl-accent) !important;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 600; font-size: 0.88rem;
  display: inline-block; transition: all .2s;
}
.btn-outline:hover { background: rgba(255,106,0,0.1); }

/* ════════════════════════════════════════════
   STATS BAND
════════════════════════════════════════════ */
.stats-band {
  border-top: 1px solid var(--dcl-border);
  border-bottom: 1px solid var(--dcl-border);
  padding: 28px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--dcl-font-head); font-weight: 800;
  font-size: 2rem; color: var(--dcl-white); letter-spacing: -0.03em;
}
.stat-num sup { color: var(--dcl-accent); font-size: 1.2rem; }
.stat-label { font-size: 0.82rem; color: var(--dcl-muted); margin-top: 4px; }

/* ════════════════════════════════════════════
   INFO NOTICE
════════════════════════════════════════════ */
.info-notice {
  margin: 40px 48px 0;
  background: var(--dcl-card); border: 1px solid var(--dcl-border);
  border-left: 3px solid var(--dcl-accent);
  border-radius: 10px; padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 16px;
}
.info-notice-icon {
  font-size: 1.3rem; min-width: 28px; margin-top: 2px;
}
.info-notice h4 {
  font-size: 0.95rem; margin-bottom: 6px; color: var(--dcl-white);
}
.info-notice p { font-size: 0.87rem; margin: 0; }

/* ════════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════════ */
.section { padding: 96px 48px; }
.section--dark { background: var(--dcl-dark); }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dcl-accent);
  margin-bottom: 10px; display: block;
}
.section-header { max-width: 560px; margin-bottom: 56px; }
.section-header p { margin-top: 12px; }

/* ════════════════════════════════════════════
   SERVICES GRID
════════════════════════════════════════════ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--dcl-border);
  border: 1px solid var(--dcl-border);
  border-radius: 16px; overflow: hidden;
}
.service-card {
  background: var(--dcl-card); padding: 36px 32px;
  transition: background .25s; position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--dcl-accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.service-card:hover { background: #1e1f24; }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 50px; height: 50px; border-radius: 10px;
  background: rgba(255,106,0,0.1); border: 1px solid rgba(255,106,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.87rem; }
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--dcl-accent); font-size: 0.84rem; font-weight: 600;
  margin-top: 14px; transition: gap .2s;
}
.service-card .service-link:hover { gap: 9px; color: var(--dcl-accent2); }

/* ════════════════════════════════════════════
   NEWS SECTION
════════════════════════════════════════════ */
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.news-card {
  background: var(--dcl-card); border: 1px solid var(--dcl-border);
  border-radius: 14px; overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column;
}
.news-card:hover { border-color: rgba(255,106,0,0.3); transform: translateY(-3px); }
.news-card-image {
  width: 100%; height: 200px; object-fit: cover;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 100%);
}
.news-card-image-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, rgba(255,106,0,0.08) 0%, #1a1a1a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.news-category {
  background: rgba(255,106,0,0.1); color: var(--dcl-accent);
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em;
}
.news-date { font-size: 0.78rem; color: var(--dcl-muted); }
.news-card h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.news-card h3 a { color: var(--dcl-white); }
.news-card h3 a:hover { color: var(--dcl-accent); }
.news-card p { font-size: 0.85rem; flex: 1; }
.news-card .read-more {
  color: var(--dcl-accent); font-size: 0.83rem; font-weight: 600;
  margin-top: 16px; display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.news-card .read-more:hover { gap: 9px; color: var(--dcl-accent2); }

.news-section-footer {
  text-align: center; margin-top: 48px;
}

/* ════════════════════════════════════════════
   OPENING HOURS
════════════════════════════════════════════ */
.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-top: 48px;
}
.hours-card {
  background: var(--dcl-card); border: 1px solid var(--dcl-border);
  border-radius: 14px; padding: 32px;
}
.hours-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--dcl-white);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.hours-badge {
  background: rgba(255,106,0,0.1); color: var(--dcl-accent);
  font-size: 0.7rem; padding: 3px 10px; border-radius: 100px;
  font-family: var(--dcl-font-body);
  font-weight: 600; letter-spacing: 0.04em;
}
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--dcl-border);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-day { color: var(--dcl-muted); }
.hours-time { color: var(--dcl-white); font-weight: 500; }
.hours-row.closed .hours-time { color: #555; }

/* ════════════════════════════════════════════
   JOBS
════════════════════════════════════════════ */
.jobs-list { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.job-item {
  background: var(--dcl-card); border: 1px solid var(--dcl-border);
  border-radius: 10px; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: border-color .2s; text-decoration: none; color: inherit;
}
.job-item:hover { border-color: rgba(255,106,0,0.35); }
.job-title { font-weight: 600; color: var(--dcl-white); font-size: 0.95rem; }
.job-type { font-size: 0.78rem; color: var(--dcl-muted); margin-top: 3px; }
.job-arrow { color: var(--dcl-accent); font-size: 1.1rem; }

/* ════════════════════════════════════════════
   CTA STRIP
════════════════════════════════════════════ */
.cta-section {
  margin: 0 48px 96px;
  background: linear-gradient(135deg, rgba(255,106,0,0.1) 0%, rgba(255,154,60,0.05) 100%);
  border: 1px solid rgba(255,106,0,0.18);
  border-radius: 20px; padding: 80px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { position: relative; margin-bottom: 16px; }
.cta-section p { position: relative; margin: 0 auto 32px; max-width: 440px; }
.cta-section .btn-primary { position: relative; }

/* ════════════════════════════════════════════
   SINGLE POST / PAGE
════════════════════════════════════════════ */
.site-main {
  margin-top: 68px;
  min-height: 60vh;
}
.entry-header {
  background: var(--dcl-dark);
  padding: 80px 48px 60px;
  border-bottom: 1px solid var(--dcl-border);
}
.entry-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.entry-content {
  max-width: 760px; margin: 0 auto; padding: 64px 48px;
}
.entry-content p { color: var(--dcl-text); font-size: 1.02rem; line-height: 1.8; }
.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content ul, .entry-content ol {
  padding-left: 1.5rem; margin-bottom: 1rem; color: var(--dcl-text);
}
.entry-content li { margin-bottom: 0.5rem; }
.entry-thumbnail {
  width: 100%; max-height: 480px; object-fit: cover;
  border-radius: 14px; margin-bottom: 40px;
}

/* ════════════════════════════════════════════
   ARCHIVE / BLOG
════════════════════════════════════════════ */
.archive-header {
  padding: 100px 48px 60px;
  background: var(--dcl-dark);
  border-bottom: 1px solid var(--dcl-border);
}
.archive-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 64px 48px;
}

/* ════════════════════════════════════════════
   PAGINATION
════════════════════════════════════════════ */
.pagination {
  display: flex; justify-content: center; gap: 8px;
  padding: 0 48px 64px;
}
.page-numbers {
  width: 40px; height: 40px; border-radius: 8px;
  border: 1px solid var(--dcl-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--dcl-muted); font-size: 0.9rem; font-weight: 500;
  transition: all .2s;
}
.page-numbers:hover, .page-numbers.current {
  background: var(--dcl-accent); border-color: var(--dcl-accent);
  color: var(--dcl-black);
}

/* ════════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════════ */
.content-sidebar-wrap {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 40px; padding: 64px 48px;
}
.widget {
  background: var(--dcl-card); border: 1px solid var(--dcl-border);
  border-radius: 12px; padding: 28px; margin-bottom: 24px;
}
.widget-title {
  font-family: var(--dcl-font-head); font-size: 0.9rem; font-weight: 700;
  color: var(--dcl-white); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--dcl-border);
}
.widget ul li {
  padding: 8px 0; border-bottom: 1px solid var(--dcl-border);
  font-size: 0.88rem;
}
.widget ul li:last-child { border-bottom: none; }
.widget ul a { color: var(--dcl-muted); }
.widget ul a:hover { color: var(--dcl-accent); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--dcl-border);
  background: var(--dcl-dark);
}
.footer-widgets {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding: 64px 48px;
  border-bottom: 1px solid var(--dcl-border);
}
.footer-brand p { margin-top: 12px; font-size: 0.88rem; max-width: 260px; }
.footer-logo {
  font-family: var(--dcl-font-head); font-weight: 800; font-size: 1.2rem;
  color: var(--dcl-white);
}
.footer-logo span { color: var(--dcl-accent); }
.footer-widget-title {
  font-family: var(--dcl-font-head); font-weight: 700;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--dcl-white); margin-bottom: 16px;
}
.footer-widget ul li { margin-bottom: 8px; }
.footer-widget ul a { color: var(--dcl-muted); font-size: 0.88rem; }
.footer-widget ul a:hover { color: var(--dcl-accent); }
.footer-bottom {
  padding: 20px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--dcl-muted);
}
.footer-bottom a { color: var(--dcl-muted); }
.footer-bottom a:hover { color: var(--dcl-white); }
.footer-legal { display: flex; gap: 24px; }

/* ════════════════════════════════════════════
   GUTENBERG BLOCK STYLES
════════════════════════════════════════════ */
.wp-block-group { padding: 2rem 0; }
.wp-block-separator {
  border: none; border-top: 1px solid var(--dcl-border);
  margin: 2rem 0;
}
.wp-block-quote {
  border-left: 3px solid var(--dcl-accent);
  padding: 16px 24px; margin: 2rem 0;
  background: var(--dcl-card); border-radius: 0 8px 8px 0;
}
.wp-block-quote p { color: var(--dcl-text); font-size: 1.05rem; font-style: italic; }
.wp-block-quote cite { color: var(--dcl-muted); font-size: 0.85rem; margin-top: 8px; display: block; }
.wp-block-code {
  background: var(--dcl-card); border: 1px solid var(--dcl-border);
  border-radius: 8px; padding: 20px 24px;
  font-size: 0.9rem; color: var(--dcl-accent2); overflow-x: auto;
}
.wp-block-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.wp-block-table td, .wp-block-table th {
  padding: 12px 16px; border: 1px solid var(--dcl-border);
  font-size: 0.9rem;
}
.wp-block-table th { background: var(--dcl-card); color: var(--dcl-white); font-weight: 600; }
.wp-block-table tr:hover td { background: rgba(255,106,0,0.03); }
.wp-block-button .wp-block-button__link {
  background: var(--dcl-accent); color: var(--dcl-black) !important;
  padding: 12px 24px; border-radius: 8px;
  font-weight: 700; border: none;
  transition: transform .2s, box-shadow .2s;
}
.wp-block-button .wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,106,0,0.3);
}
.is-style-outline .wp-block-button__link {
  background: transparent !important;
  border: 1px solid var(--dcl-accent) !important;
  color: var(--dcl-accent) !important;
}
.wp-block-image img { border-radius: 12px; }
.wp-block-cover {
  min-height: 400px; border-radius: 14px; overflow: hidden;
}
.wp-block-pullquote {
  border-top: 3px solid var(--dcl-accent);
  border-bottom: 3px solid var(--dcl-accent);
  padding: 32px; text-align: center; margin: 2rem 0;
}
.wp-block-pullquote blockquote p {
  font-family: var(--dcl-font-head); font-size: 1.4rem;
  color: var(--dcl-white); font-style: italic;
}

/* ════════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-widgets { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .site-header { padding: 0 20px; }
  .main-navigation { display: none; }
  .main-navigation.is-open { display: block; }
  .main-navigation.is-open ul { flex-direction: column; gap: 0; }
  .main-navigation.is-open ul a { display: block; padding: 12px 20px; border-bottom: 1px solid var(--dcl-border); }
  .menu-toggle { display: flex; }
  .hero-section { padding: 100px 20px 60px; }
  .section { padding: 64px 20px; }
  .stats-band { padding: 20px; grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .info-notice { margin: 32px 20px 0; }
  .cta-section { margin: 0 20px 64px; padding: 48px 24px; }
  .footer-widgets { grid-template-columns: 1fr; padding: 40px 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
  .entry-header { padding: 80px 20px 40px; }
  .entry-content { padding: 40px 20px; }
  .pagination { padding: 0 20px 48px; }
}
