﻿/* Blog module styles â€” extends page.css */

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 32px;
}

.post-card {
  border: 1px solid #E6E7EB;
  border-radius: 4px;
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.post-card:hover {
  border-color: #16A34A;
  transform: translateY(-3px);
}

.post-card h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111318;
}

.post-card h3 a {
  color: #16A34A;
  text-decoration: none;
  transition: color 0.2s ease;
}

.post-card h3 a:hover {
  color: #15803D;
}

.post-card .excerpt {
  margin: 8px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.post-card .date {
  margin: 12px 0 0 0;
  font-size: 12px;
  color: #9AA0AC;
}

.post-body {
  white-space: pre-wrap;
  line-height: 1.7;
  margin-top: 24px;
  margin-bottom: 32px;
  font-size: 15px;
  color: #333;
}

.new-post-link {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #16A34A;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #16A34A;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.new-post-link:hover {
  background: #16A34A;
  color: #ffffff;
  transform: translateY(-1px);
}

.field textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid #E0E2E8;
  border-radius: 4px;
  color: #111318;
  background: #ffffff;
  transition: border-color 0.2s ease;
  min-height: 160px;
  resize: vertical;
}

.field textarea:focus {
  outline: none;
  border-color: #16A34A;
}
