img.img100 { width: 100%; max-width: 100%; }
img.img50 { width: 50%; max-width: 50%; }
img.img33 { width: 33%; max-width: 33%; }
.blog-container p, li { line-height: 1.8; }
.blog-container h4 { z-index: 2; position: relative; display: inline-block; padding-right: 16px; }
.blog-container i { color: #ff7b00; }
.breadcrumb ul { list-style: none;
padding: 0;
margin: 0; }

.breadcrumb { 
background: transparent;
border-radius: 0;
padding-top: 0;
padding-bottom: 0;
margin: 0;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: .75rem 1rem;
margin-bottom: 1rem;
list-style: none;
    list-style-position: outside;
    list-style-image: none;
    list-style-type: none;
	font-size: 14px;
}

.justify-content-md-end {
	justify-content: flex-end !important;
}
.breadcrumb ul > li::after {
	content: "\f111";
font-family: "Font Awesome 5 Free";
font-weight: 900;
padding: 0 11px 0 14px;
display: inline-block;
vertical-align: middle;
font-size: 5px;
opacity: .6;
}

.breadcrumb ul > li.last::after {
	content: "";
}

.breadcrumb ul li {
	display: inline-block;
line-height: normal;
}

@media screen and (max-width:500px) {
	img.img33 { width: 100%; max-width: 100%; }
	img.img50 { width: 100%; max-width: 100%; }
}

/* ============================================================
   Shared blog post styles (all new-style posts)
   ============================================================ */

/* ── Hero ── */
.blog-hero {
  position: relative;
  height: 65vh;
  min-height: 400px;
  overflow: hidden;
  background: #0a0a0a;
}
.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.60;
}
.blog-hero-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.blog-category {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ea5c3a;
  margin-bottom: 0.75rem;
}
.blog-hero-caption h1 {
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.85rem;
  max-width: 860px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.blog-hero-caption .blog-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
}

/* ── Author bar ── */
.author-bar { border-bottom: 1px solid #e9ecef; padding: 1.25rem 0; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.95rem; color: #2e2e2d; margin-bottom: 0; }
.post-meta   { font-size: 0.8rem; color: #888; margin-bottom: 0; }

/* ── Body ── */
.blog-body { font-size: 1.08rem; line-height: 1.88; color: #2e2e2e; font-weight: 300; }
.blog-body p  { margin-bottom: 1.5rem; }
.blog-body h2 { font-size: 1.55rem; font-weight: 700; margin-top: 2.75rem; margin-bottom: 1rem; color: #1a1a1a; }
.blog-body h3 { font-size: 1.15rem; font-weight: 700; margin-top: 1.75rem; margin-bottom: 0.6rem; color: #1a1a1a; }
.blog-body ul, .blog-body ol { padding-left: 1.4rem; margin-bottom: 1.5rem; }
.blog-body li { margin-bottom: 0.5rem; }
.blog-body a  { color: #ea5c3a; }
.blog-body a:hover { color: #c44a2a; }
.blog-body strong { font-weight: 700; color: #1a1a1a; }

blockquote.pull,
.blog-body blockquote {
  border-left: 4px solid #ea5c3a;
  padding: 1.1rem 1.5rem;
  margin: 2.5rem 0;
  background: #f9f7f5;
  font-size: 1.15rem;
  font-style: italic;
  color: #444;
  border-radius: 0 6px 6px 0;
}

/* ── Images ── */
.blog-img-full {
  width: 100%; height: auto; border-radius: 6px;
  margin: 2.25rem 0 0.5rem; display: block;
}
.blog-img-caption {
  font-size: 0.78rem; color: #999;
  text-align: center; margin-bottom: 2rem; font-style: italic;
}

/* Image grids */
.img-grid-2, .blog-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0 0.5rem;
}
.img-grid-2 img, .blog-img-grid img {
  width: 100%; height: 260px;
  object-fit: cover; border-radius: 6px; display: block;
}
.img-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0 0.5rem;
}
.img-grid-3 img {
  width: 100%; height: 220px;
  object-fit: cover; border-radius: 6px; display: block;
}
.img-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0.85rem;
  margin: 2rem 0 0.5rem;
  align-items: stretch;
}
.img-split img {
  width: 100%; height: 320px;
  object-fit: cover; border-radius: 6px; display: block;
}
@media (max-width: 640px) {
  .img-grid-2, .img-grid-3, .img-split, .blog-img-grid { grid-template-columns: 1fr; }
  .img-grid-2 img, .img-grid-3 img, .img-split img, .blog-img-grid img { height: 220px; }
}

/* ── Section rule ── */
.section-divider { width: 56px; border-top: 3px solid #ea5c3a; margin: 1.5rem 0; }

/* ── Info / Highlight box ── */
.info-box, .highlight-box {
  background: #f4f1ee; border-left: 4px solid #ea5c3a;
  border-radius: 0 6px 6px 0; padding: 1.4rem 1.75rem; margin: 2rem 0;
}
.info-box h4, .highlight-box h4 {
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: #ea5c3a; margin-bottom: 0.75rem;
}
.info-box ul, .highlight-box ul  { padding-left: 1.2rem; margin-bottom: 0; }
.info-box li, .highlight-box li  { font-size: 0.97rem; margin-bottom: 0.4rem; }

/* ── CTA ── */
.cta-box {
  background: #2e2e2d; border-radius: 8px;
  padding: 2.75rem 2.5rem; text-align: center; margin: 3rem 0;
}
.cta-box h3 { font-size: 1.45rem; font-weight: 700; color: #fff !important; margin-bottom: 0.75rem; }
.cta-box p  { color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; font-size: 1rem; }
.btn-orange {
  background: #ea5c3a; color: #fff !important; border: none;
  padding: 0.8rem 2.25rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  font-size: 0.85rem; border-radius: 4px;
  text-decoration: none; display: inline-block; transition: background 0.2s;
}
.btn-orange:hover { background: #d04f30; color: #fff !important; text-decoration: none; }

/* ── Sidebar ── */
.blog-sidebar .widget {
  background: #f6f4f2; border-radius: 6px; padding: 1.5rem; margin-bottom: 2rem;
}
.blog-sidebar .widget h5 {
  font-size: 0.72rem !important; letter-spacing: 2px !important;
  text-transform: uppercase; color: #999; margin-bottom: 1rem; font-weight: 700 !important;
}
.blog-sidebar .widget ul { list-style: none; padding: 0; margin: 0; }
.blog-sidebar .widget ul li { padding: 0.4rem 0; border-bottom: 1px solid #e8e5e1; font-size: 0.9rem; }
.blog-sidebar .widget ul li:last-child { border-bottom: none; }
.blog-sidebar .widget ul li a { color: #333; text-decoration: none; }
.blog-sidebar .widget ul li a:hover { color: #ea5c3a; }

.tag-cloud .tag {
  display: inline-block; background: #fff; border: 1px solid #ddd;
  border-radius: 3px; padding: 0.25rem 0.65rem; font-size: 0.78rem;
  color: #555; margin: 0.2rem; text-decoration: none; transition: all 0.2s;
}
.tag-cloud .tag:hover { background: #ea5c3a; border-color: #ea5c3a; color: #fff; }