* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
  background: #fafafa;
  color: #222;
}

/* HEADER */
.post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
}

.back-btn {
  text-decoration: none;
  font-size: 20px;
  color: #222;
}

.club-name {
  font-weight: 600;
}

/* POST CONTAINER */
.post-container {
  max-width: 720px;
  margin: auto;
  background: #fff;
}

/* IMAGE */
.post-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.post-content {
  padding: 18px;
}

.post-badge {
  display: inline-block;
  background: #e8f0ff;
  color: #1a4fd8;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.post-title {
  margin: 6px 0;
  font-size: 22px;
}

.post-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

/* SUMMARY */
.post-summary {
  background: #f5f7fa;
  border-left: 4px solid #3897f0;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* POINTS */
.post-points {
  padding-left: 18px;
  font-size: 14px;
  margin-bottom: 18px;
}

.post-points li {
  margin-bottom: 6px;
}

/* TEXT */
.post-text p {
  line-height: 1.9;
  margin-bottom: 14px;
  font-size: 15px;
}

/* SECTIONS */
.post-section {
  font-size: 16px;
  margin: 22px 0 8px;
  font-weight: 600;
}

/* QUOTE */
.post-quote {
  margin: 18px 0;
  padding: 12px 16px;
  background: #fff7e6;
  border-left: 4px solid #ffb703;
  font-style: italic;
  border-radius: 6px;
}

/* FOOTER */
.post-footer {
  padding: 14px 18px;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #eee;
}

.site-footer {
  text-align: center;
  font-size: 13px;
  color: #777;
  padding: 16px;
}

/* COOKIE */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.cookie-banner a {
  color: #4da3ff;
}

.cookie-banner button {
  background: #4da3ff;
  border: none;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}
