/* ===============================
   DEFAULT CONTENT (index.php)
================================ */

.site-content {
  background: #f6f7f5;
  padding: 3rem 1rem 4rem;
}

.site-content article {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 0 2px rgba(0,0,0,.1);
}

/* Title */
.site-content h1 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

/* Content */
.site-content .entry-content {
  font-size: 1rem;
  line-height: 1.65;
  color: #374151;
}

/* Links */
.site-content .entry-content a {
  color: #2f6f3e;
  font-weight: 600;
  text-decoration: underline;
}

.site-content .entry-content a:hover {
  text-decoration: none;
}

/* Lists */
.site-content ul,
.site-content ol {
  margin-left: 1.25rem;
  margin-bottom: 1.5rem;
}

/* Images */
.site-content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1.5rem 0;
}

