/* ===== ESH BLOG STYLESHEET =====
   Used on single blog posts and blog landing page.
   Loaded via functions.php — no inline styles.
=================================== */

/* --- Blog Landing Page --- */
.esh-blog-hero {
    background: linear-gradient(135deg, #0a1628 0%, #122c44 100%);
    padding: 80px 20px 60px;
    text-align: center;
    width: 100%;
}
.esh-blog-hero h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 12px;
}
.esh-blog-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* Category filter bar */
.esh-blog-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1100px;
    margin: -30px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.esh-blog-filter {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.esh-blog-filter:hover,
.esh-blog-filter.active {
    background: #25adb9;
    color: #fff;
    border-color: #25adb9;
}

/* Blog card grid (landing page) */
.esh-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}
.esh-blog-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}
.esh-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.esh-blog-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.esh-blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(37,173,185,0.95);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.esh-blog-card-body {
    padding: 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.esh-blog-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.4;
}
.esh-blog-card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 14px;
    flex: 1;
}
.esh-blog-card-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    gap: 12px;
    align-items: center;
}
.esh-blog-card-meta span { display: flex; align-items: center; gap: 4px; }

/* Meta icons (calendar, author, clock) — fix unstyled inline SVGs rendering at browser-default huge size */
.esh-meta-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}


/* --- Single Blog Post --- */
.esh-blog-post { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* Post header (title, meta) */
.esh-blog-post-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 20px;
    text-align: center;
}
.esh-blog-post-header h1 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.3;
}
.esh-blog-post-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
    color: #888;
}
.esh-blog-post-meta span { display: flex; align-items: center; gap: 5px; }
.esh-blog-post-meta a { color: #25adb9; text-decoration: none; font-weight: 600; }

/* Quick Answer box */
.esh-blog-quick-answer {
    background: #f8fafc;
    border-left: 4px solid #25adb9;
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 0 auto 32px;
    max-width: 800px;
}
.esh-blog-quick-answer .qa-label {
    font-size: 13px;
    font-weight: 700;
    color: #25adb9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
}
.esh-blog-quick-answer p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Featured image */
.esh-blog-featured-img {
    width: 100%;
    max-width: 1100px;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
    margin: 0 auto 40px;
    display: block;
}

/* Article body */
.esh-blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 40px;
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a3e;
}
.esh-blog-article h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 40px 0 16px;
    line-height: 1.3;
}
.esh-blog-article h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 32px 0 12px;
}
.esh-blog-article h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 24px 0 10px;
}
.esh-blog-article p { margin: 0 0 20px; }
.esh-blog-article ul, .esh-blog-article ol { margin: 0 0 20px; padding-left: 24px; }
.esh-blog-article li { margin: 0 0 8px; }
.esh-blog-article a { color: #25adb9; font-weight: 600; text-decoration: none; }
.esh-blog-article a:hover { text-decoration: underline; }
.esh-blog-article img { width: 100%; border-radius: 12px; margin: 20px 0; }

/* Section divider */
.esh-blog-section-tag {
    display: inline-block;
    background: #e8f7f9;
    color: #25adb9;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tables */
.esh-blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-size: 15px;
}
.esh-blog-table thead {
    background: #1a1a2e;
}
.esh-blog-table thead th {
    color: #fff;
    font-weight: 700;
    padding: 14px 16px;
    text-align: left;
}
.esh-blog-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid #e2e8f0;
}
.esh-blog-table tbody tr:nth-child(even) { background: #f8fafc; }
.esh-blog-table tbody tr:hover { background: #e8f7f9; }

/* CTA boxes within blog posts */
.esh-blog-cta {
    background: linear-gradient(135deg, #25adb9 0%, #1a8893 100%);
    border-radius: 14px;
    padding: 32px;
    margin: 36px auto;
    text-align: center;
    max-width: 800px;
}
.esh-blog-cta h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}
.esh-blog-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin: 0 0 20px;
}
.esh-blog-cta-btn {
    display: inline-block;
    background: #fff;
    color: #25adb9;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.2s;
}
.esh-blog-cta-btn:hover { transform: scale(1.05); }

/* Fleet card (inline boat reference in blog post) */
.esh-blog-fleet-card {
    display: flex;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    margin: 28px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    max-width: 800px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.esh-blog-fleet-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.esh-blog-fleet-card-img {
    width: 200px;
    min-height: 140px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.esh-blog-fleet-card-body {
    padding: 18px 22px;
    flex: 1;
}
.esh-blog-fleet-card-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}
.esh-blog-fleet-card-body p {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px;
}
.esh-blog-fleet-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #25adb9;
}

/* FAQ accordion in blog posts */
.esh-blog-faq { margin: 32px auto; max-width: 800px; padding: 0 20px; }
.esh-blog-faq h2 { text-align: center; margin-bottom: 20px; }
.esh-blog-faq details {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin: 0 0 10px;
    overflow: hidden;
}
.esh-blog-faq summary {
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.esh-blog-faq summary::-webkit-details-marker { display: none; }
.esh-blog-faq summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 400;
    color: #25adb9;
    transition: transform 0.2s;
}
.esh-blog-faq details[open] summary::after { content: "−"; }
.esh-blog-faq .faq-answer {
    padding: 0 22px 18px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Author box */
.esh-blog-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    margin: 40px auto;
    padding: 24px;
    background: #f8fafc;
    border-radius: 14px;
}
.esh-blog-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25adb9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}
.esh-blog-author-info h4 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 0 0 4px; }
.esh-blog-author-info p { font-size: 14px; color: #777; margin: 0; }

/* Related posts */
.esh-blog-related {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}
.esh-blog-related h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px;
    text-align: center;
}
.esh-blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* CTA band (full width) */
.esh-blog-cta-band {
    background: #0a1628;
    padding: 48px 20px;
    text-align: center;
    margin: 40px 0;
}
.esh-blog-cta-band h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px;
}
.esh-blog-cta-band p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin: 0 0 24px;
}
.esh-blog-cta-band .esh-blog-cta-btn {
    background: #25adb9;
    color: #fff;
}
.esh-blog-cta-band .esh-blog-cta-btn:hover { background: #1a8893; }

/* --- Responsive --- */
@media (max-width: 900px) {
    .esh-blog-grid { grid-template-columns: repeat(2, 1fr); }
    .esh-blog-related-grid { grid-template-columns: repeat(2, 1fr); }
    .esh-blog-featured-img { height: 300px; }
}
@media (max-width: 600px) {
    .esh-blog-hero h1 { font-size: 28px; }
    .esh-blog-grid { grid-template-columns: 1fr; }
    .esh-blog-related-grid { grid-template-columns: 1fr; }
    .esh-blog-post-header h1 { font-size: 26px; }
    .esh-blog-featured-img { height: 220px; }
    .esh-blog-fleet-card { flex-direction: column; }
    .esh-blog-fleet-card-img { width: 100%; height: 160px; }
    .esh-blog-table { font-size: 14px; }
    .esh-blog-table thead th, .esh-blog-table tbody td { padding: 10px 8px; }
}

/* --- Search & Category Bar (replaces pill wall) --- */
.esh-blog-search-bar {
    display: flex;
    gap: 12px;
    max-width: 700px;
    margin: -28px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
}
.esh-blog-search-wrap {
    flex: 1;
    min-width: 240px;
    position: relative;
}
.esh-blog-search-input {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 30px;
    padding: 0 50px 0 22px;
    font-size: 15px;
    color: #1a1a2e;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    box-sizing: border-box;
}
.esh-blog-search-input:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 0 0 2px #25adb9;
}
.esh-blog-search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    font-size: 16px;
}
.esh-blog-cat-select {
    height: 52px;
    border: none;
    border-radius: 30px;
    padding: 0 40px 0 20px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    background: #fff url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 18px center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    min-width: 190px;
}
.esh-blog-cat-select:focus { outline: none; box-shadow: 0 4px 20px rgba(0,0,0,0.18), 0 0 0 2px #25adb9; }

/* Autocomplete dropdown */
.esh-blog-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 10;
    display: none;
    max-height: 360px;
    overflow-y: auto;
}
.esh-blog-autocomplete.active { display: block; }
.esh-blog-autocomplete-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.esh-blog-autocomplete-item:last-child { border-bottom: none; }
.esh-blog-autocomplete-item:hover { background: #f8fafc; }
.esh-blog-autocomplete-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
    flex-shrink: 0;
}
.esh-blog-autocomplete-info { flex: 1; min-width: 0; }
.esh-blog-autocomplete-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.esh-blog-autocomplete-cat {
    font-size: 12px;
    color: #25adb9;
    font-weight: 600;
}
.esh-blog-autocomplete-empty {
    padding: 20px 16px;
    text-align: center;
    font-size: 14px;
    color: #999;
}

@media (max-width: 600px) {
    .esh-blog-search-bar { margin-top: -20px; }
    .esh-blog-cat-select { min-width: 100%; }
}

/* === Trust Bar === */
.esh-blog-trust-bar {
    max-width: 800px;
    margin: 0 auto 24px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f7f8 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}
.esh-trust-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.esh-trust-stars-icons {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
}
.esh-trust-rating {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 15px;
}
.esh-trust-divider {
    color: #cbd5e1;
}
.esh-trust-count {
    color: #64748b;
    font-size: 13px;
}
.esh-trust-review {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.esh-trust-quote {
    color: #475569;
    font-style: italic;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 380px;
}
.esh-trust-author {
    color: #25adb9;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .esh-blog-trust-bar { flex-direction: column; gap: 10px; text-align: center; }
    .esh-trust-review { flex-direction: column; gap: 4px; }
    .esh-trust-quote { white-space: normal; max-width: 100%; }
}

/* === Blog Carousel === */
.esh-blog-carousel-section {
    max-width: 1100px;
    margin: 0 auto 50px;
    padding: 0 20px;
}
.esh-blog-carousel-section > h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
}
.esh-blog-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.esh-blog-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
    flex: 1;
}
.esh-blog-carousel::-webkit-scrollbar { display: none; }

.esh-carousel-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.esh-carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.esh-carousel-card-img {
    height: 170px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.esh-carousel-card-img .esh-blog-card-cat {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #25adb9;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.esh-carousel-card-body {
    padding: 16px 18px 18px;
}
.esh-carousel-card-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.35;
}
.esh-carousel-card-excerpt {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 10px;
}
.esh-carousel-card-meta {
    font-size: 12px;
    color: #94a3b8;
}

.esh-carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
    padding: 0;
}
.esh-carousel-btn:hover {
    border-color: #25adb9;
    color: #25adb9;
    box-shadow: 0 2px 8px rgba(37,173,185,0.2);
}
.esh-carousel-btn:disabled,
.esh-carousel-btn[style*="opacity: 0.3"] {
    cursor: default;
}

@media (max-width: 700px) {
    .esh-blog-carousel-wrapper { gap: 8px; }
    .esh-carousel-card { flex: 0 0 240px; }
    .esh-carousel-card-img { height: 140px; }
    .esh-carousel-btn { width: 36px; height: 36px; font-size: 20px; }
}

/* === REUSABLE BLOG COMPONENT STYLES (Added Aug 2026) === */

/* Tick Checklist — 2-column grid with ✓ circles */
.esh-blog-checklist {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.esh-blog-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.esh-blog-checklist li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: #25adb9;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.esh-blog-checklist.single-col { grid-template-columns: 1fr; }
.esh-blog-checklist.three-col { grid-template-columns: repeat(3, 1fr); }

/* Stat Cards — big number highlights */
.esh-blog-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 28px 0;
}
.esh-blog-stat-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.esh-blog-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.esh-blog-stat-card .stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 8px;
}
.esh-blog-stat-card .stat-value {
    font-size: 26px;
    font-weight: 700;
    color: #25adb9;
    margin: 0;
    line-height: 1.1;
}
.esh-blog-stat-card .stat-detail {
    font-size: 12px;
    color: #94a3b8;
    margin: 6px 0 0;
}

/* Feature Grid — icon + title + text cards */
.esh-blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}
.esh-blog-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.esh-blog-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.esh-blog-feature-card .feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    background: #e6f7f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.esh-blog-feature-card .feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: #25adb9;
    fill: none;
    stroke-width: 2;
}
.esh-blog-feature-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}
.esh-blog-feature-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Info Grid — heading + text cards (no icons) */
.esh-blog-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0;
}
.esh-blog-info-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.esh-blog-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}
.esh-blog-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}
.esh-blog-info-card p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Step Cards — numbered */
.esh-blog-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}
.esh-blog-step-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.esh-blog-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.esh-blog-step-card .step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #25adb9;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 14px;
}
.esh-blog-step-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
}
.esh-blog-step-card p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Responsive — new components */
@media (max-width: 900px) {
    .esh-blog-checklist { grid-template-columns: 1fr; }
    .esh-blog-checklist.three-col { grid-template-columns: repeat(2, 1fr); }
    .esh-blog-feature-grid { grid-template-columns: repeat(2, 1fr); }
    .esh-blog-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .esh-blog-info-grid { grid-template-columns: 1fr; }
    .esh-blog-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .esh-blog-checklist.three-col { grid-template-columns: 1fr; }
    .esh-blog-feature-grid { grid-template-columns: 1fr; }
    .esh-blog-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .esh-blog-steps { grid-template-columns: 1fr; }
}
