/**
 * Blog Section Styles
 *
 * @package Author_Theme
 */

.author-signature {
  font-family: "Licorice", cursive !important;
}

.blog-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  width: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: var(--space-6);
}

.blog-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-title {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
}

.blog-title a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.blog-title a:hover {
  color: var(--primary-600);
}

.blog-excerpt {
  color: var(--text-muted);
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  color: var(--primary-600);
  text-decoration: none;
  font-weight: var(--weight-semibold);
  transition: color var(--duration-fast) var(--ease-out);
}

.read-more:hover {
  color: var(--primary-700);
}

.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-out);
}

.btn-primary {
  background-color: var(--primary-600);
  color: white;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background-color: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
