/*
Theme Name: DentalOffice365 Pinterest Grid
Theme URI: https://dentaloffice365.com/
Author: Arin Day
Description: A custom Pinterest-style blog grid layout for DentalOffice365 with Read More buttons and improved aesthetics.
Version: 1.0
Template: astra
Text Domain: dentaloffice365-pinterest-grid
*/

body {
  font-family: 'Helvetica Neue', sans-serif;
}

.dental-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding: 20px;
}

.dental-post-grid .post-card {
  border: 1px solid #e3e3e3;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.dental-post-grid .post-card:hover {
  transform: translateY(-5px);
}

.dental-post-grid .post-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.dental-post-grid .post-card h2 {
  font-size: 1.25rem;
  margin: 15px;
  color: #2d2d2d;
}

.dental-post-grid .post-card p {
  font-size: 0.95rem;
  margin: 0 15px 15px 15px;
  color: #555;
}

.dental-post-grid .post-card a.read-more {
  display: inline-block;
  margin: 10px 15px 15px;
  padding: 8px 16px;
  background: #1e88e5;
  color: #fff !important;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.dental-post-grid .post-card a.read-more:hover {
  background: #0f5fbf;
}
