:root {
  --bg: #fff8e7;     
  --text: #2e2e2e;    
  --muted: #707070;   
  --brand: #f4b400;   
  --brand-2: #fbbc04;
  --panel: #fff3c4;  
  --radius: 20px;
  --shadow: 0 8px 24px rgba(0,0,0,.10);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--bg);
}

.wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 30px;
}


.nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 12px;
  border-radius: 50px;
  background: var(--panel);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 20px;
  transition: .25s ease;
}

.nav a:hover {
  background: #fff;
}


.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 44px;
  line-height: 1.15;
  margin: 0;
}

.header p {
  color: var(--muted);
  margin-top: 6px;
}


.content {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
  }
}


.add {
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 30px;
}

.post-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  border: 1px solid #f0e7c6;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 0;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.rule {
  height: 1px;
  background: #eee;
  border: none;
  margin: 12px 0;
}


.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  transition: background .2s ease, transform .04s ease, box-shadow .2s ease;
}

.btn:hover {
  background: var(--brand-2);
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

.btn:activ {
  transform: translateY(1px);
}


.links {
  margin-top: 8px;
}

.links a {
  display: inline-block;
  margin-right: 10px;
  color: #b88400;
  font-weight: 600;
  text-decoration: none;
}

.links a:hover {
  text-decoration: underline;
}


.right .widget {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.right .widget h3 {
  margin: 0 0 10px;
}

.right .widget ul {
  margin: 0;
  padding-left: 18px;
}

.footer {
  text-align: center;
  color: var(--muted);
  margin-top: 40px;
}


.list {
  padding-left: 18px;
}

.credit {
  font-size: 12px;
  color: #9b9b9b;
  margin-top: 6px;
}
