/* blog-minimal — neutral, fixed blog styling.
   Designed to inherit type rhythm and color from the site's main site.css.
   Override per-site by tweaking the CSS custom properties at :root in site.css. */

.blog-post .post,
.blog-index .blog-list-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-4, 40px) var(--space-3, 24px);
}

.blog-post .post-eyebrow {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-700, #444);
  margin: 0 0 var(--space-1, 8px);
}

.blog-post .post-title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 var(--space-2, 16px);
}

.blog-post .post-date {
  color: var(--color-gray-700, #555);
  font-size: 14px;
  margin: 0 0 var(--space-3, 24px);
}

.blog-post .post-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 var(--space-4, 40px);
  border-radius: var(--radius-md, 8px);
}

.blog-post .post-body p,
.blog-post .post-body li {
  font-size: 17px;
  line-height: 1.65;
}

.blog-post .post-body h2,
.blog-post .post-body h3 {
  margin-top: var(--space-4, 40px);
  line-height: 1.25;
}

.blog-post .post-body img {
  max-width: 100%;
  height: auto;
}

.blog-post .post-body a {
  color: var(--color-link, #0a121f);
  text-underline-offset: 2px;
}

/* Blog index — split hero (matches interior pages) + full-width 4-col grid.
   Fonts inherit the site's Elementor globals: headings = Libre Baskerville,
   body/meta = Montserrat. */
:root {
  --lt-heading: var(--e-global-typography-primary-font-family, "Libre Baskerville", Georgia, serif);
  --lt-body: var(--e-global-typography-text-font-family, "Montserrat", sans-serif);
  --lt-maroon: #450209;
  --lt-primary: #810A17;
  --lt-tan: #E5BE9D;
}

.blog-index .blog-hero {
  display: flex;
  background: #241611; /* 2026-07-17: brown, matches all hero sections */
}
.blog-index .blog-hero-text {
  flex: 0 0 41%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  /* extra top padding clears the overlapping transparent site header */
  padding: clamp(120px, 13vw, 170px) clamp(28px, 4vw, 56px) clamp(44px, 5vw, 64px);
  color: #ffffff;
}
/* 2026-07-16 (operator): match the Elementor hero typography/colors/button used
 * on Videos / Practice-area / Attorney pages. Values taken from the computed
 * .elementor-heading-title / .elementor-button so the blog hero reads as one family:
 * heading weight/size, all-white text, white button with #000 label. */
.blog-index .blog-hero-text h1 {
  font-family: "Libre Baskerville", var(--lt-heading), Georgia, serif;
  font-weight: 700;
  /* lands at the Elementor hero 40px on desktop, scales down on mobile */
  font-size: clamp(30px, 5.2vw, 40px);
  line-height: 1.1;
  margin: 0 0 14px;
  color: #ffffff;
  text-transform: capitalize;
}
.blog-index .blog-hero-text h2 {
  font-family: "Libre Baskerville", var(--lt-heading), Georgia, serif;
  font-weight: 700;
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.1;
  margin: 0 0 20px;
  color: #ffffff;
  text-transform: capitalize;
}
.blog-index .blog-hero-text p {
  font-family: "Montserrat", var(--lt-body), sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  margin: 0 0 26px;
  color: #ffffff;
  max-width: 48ch;
}
.blog-index .blog-hero-btn {
  font-family: "Montserrat", var(--lt-body), sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #ffffff;
  color: #000000;
  padding: 12px 25px;
  border-radius: 0;
  text-decoration: none;
  transition: background 140ms ease, color 140ms ease;
}
.blog-index .blog-hero-btn:hover {
  background: var(--lt-primary);
  color: #ffffff;
}
.blog-index .blog-hero-img {
  position: relative;
  flex: 1 1 59%;
  /* match the interior-page hero: full team photo contained + bottom-anchored */
  background: #000 url("/assets/images/group26.webp") 50% 100% / contain no-repeat;
  min-height: 480px;
}
.blog-index .blog-hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(#000 10%, rgba(0, 0, 0, 0) 50%);
  pointer-events: none;
}

/* full-width grid, padded to the site gutters */
.blog-index .blog-list-wrap {
  max-width: none;
  margin: 0;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px);
}
.blog-index .blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.blog-index .blog-list-item {
  display: flex;
}
.blog-index .blog-list-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
  border: 1px solid #eadfd4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(44, 23, 7, 0.06);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.blog-index .blog-list-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(44, 23, 7, 0.14);
  border-color: #d9c4ad;
}
.blog-index .blog-list-thumb {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
/* placeholder tile for posts with no featured image (keeps the grid even) */
.blog-index .blog-thumb-fallback {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
  font-family: var(--lt-heading), "Libre Baskerville", Georgia, serif;
  font-size: 18px;
  color: #f3e3d3;
  background: linear-gradient(135deg, var(--lt-primary) 0%, var(--lt-maroon) 100%);
}
.blog-index .blog-list-meta {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 22px;
}
.blog-index .blog-list-title {
  font-family: var(--lt-heading), "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--lt-primary);
}
.blog-index .blog-list-date {
  font-family: var(--lt-body), "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8F6D4F;
  margin: 0 0 12px;
}
.blog-index .blog-list-excerpt {
  font-family: var(--lt-body), "Montserrat", sans-serif;
  color: #4a3b2c;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-index .blog-list-more {
  margin-top: auto;
  align-self: flex-start;
  display: inline-block;
  font-family: var(--lt-body), "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lt-primary);
  border: 1px solid #d9c4ad;
  padding: 9px 16px;
  border-radius: 2px;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.blog-index .blog-list-link:hover .blog-list-more {
  background: var(--lt-primary);
  border-color: var(--lt-primary);
  color: #ffffff;
}

@media (max-width: 1200px) {
  .blog-index .blog-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .blog-index .blog-hero { flex-direction: column; }
  .blog-index .blog-hero-text { flex: none; }
  .blog-index .blog-hero-img { flex: none; min-height: 260px; }
}
@media (max-width: 860px) {
  .blog-index .blog-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-index .blog-list { grid-template-columns: 1fr; }
  .blog-index .blog-list-thumb,
  .blog-index .blog-thumb-fallback { height: 210px; }
}
