/* blog.css — Blog component styles
   Peer dependency: Bootstrap 4, Font Awesome 4 */

:root {
    --blog-ink:          #1a2438;
    --blog-amber:        #b35a05;
    --blog-amber-dark:   #8e4703;
    --blog-body:         #4b5568;
    --blog-muted:        #8896a8;
    --blog-border:       #eae6e1;
    --blog-radius:       10px;
    --blog-transition:   all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --blog-shadow-rest:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --blog-shadow-hover: 0 12px 40px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.07);
    --brand-teal:    #00acbe;
    --brand-orange:  #f0891b;
    --brand-magenta: #e5007a;
    --brand-gold:    #f9b618;
}

.blog-section-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.68rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--blog-muted);
    background: transparent;
    margin-bottom: 28px;
    padding-bottom: 0;
    border-bottom: none;
    white-space: nowrap;
}

.blog-section-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--blog-border);
    min-width: 24px;
}


.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--blog-border);
    border-radius: var(--blog-radius);
    overflow: hidden;
    text-decoration: none !important;
    color: var(--blog-body);
    box-shadow: var(--blog-shadow-rest);
    transition: var(--blog-transition);
}

.blog-card:hover {
    box-shadow: 0 14px 28px rgba(0,0,0,.09), 0 4px 10px rgba(0,0,0,.06);
    transform: translateY(-4px);
    color: var(--blog-body);
    text-decoration: none !important;
}

.blog-card-img-wrap {
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.06);
}

.blog-card--post     .blog-card-img { height: 200px; }
.blog-card--recent   .blog-card-img { height: 195px; }
.blog-card--related  .blog-card-img { height: 180px; }
.blog-card--category .blog-card-img { height: 160px; }

/* Static gradient — colour identity matches the animated category hero.
   Theme stamped via data-theme="sea|sand|sunset" using the same crc32
   slug hash as category.php so card and landing page always agree. */
.blog-card-img-placeholder {
    flex-shrink: 0;
    height: 160px;
    background: linear-gradient(150deg, #48d4e0 0%, var(--brand-teal) 55%, #005a78 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    transition: filter .24s ease;
}

.blog-card:hover .blog-card-img-placeholder {
    filter: brightness(1.1);
}

.blog-card-img-placeholder[data-theme="sea"] {
    background: linear-gradient(150deg, #48d8ea 0%, var(--brand-teal) 50%, #005070 100%);
}

.blog-card-img-placeholder[data-theme="sand"] {
    background: linear-gradient(150deg, var(--brand-gold) 0%, var(--brand-orange) 50%, #b25000 100%);
}

.blog-card-img-placeholder[data-theme="sunset"] {
    background: linear-gradient(150deg, var(--brand-orange) 0%, #e03060 55%, var(--brand-magenta) 100%);
}

.blog-card-img-placeholder-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}

.blog-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blog-ink);
    line-height: 1.45;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .18s ease;
}

.blog-card:hover .blog-card-title { color: var(--blog-amber); }

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    color: var(--blog-muted);
    margin-bottom: 10px;
    letter-spacing: .01em;
}

.blog-card-desc {
    font-size: .875rem;
    color: var(--blog-body);
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    background: var(--brand-orange);
    color: var(--blog-ink) !important;
    padding: 5px 14px;
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(240, 137, 27, .28);
    transition: background .2s ease, box-shadow .2s ease;
}

.blog-card-cta .fa {
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.blog-card:hover .blog-card-cta {
    background: #d0730d;
    box-shadow: 0 3px 10px rgba(240, 137, 27, .42);
    color: var(--blog-ink) !important;
}

.blog-card:hover .blog-card-cta .fa {
    transform: translateX(4px);
}

.blog-card--category .blog-card-cta {
    margin-top: auto;
    align-self: flex-start;
}

.featured-hero {
    display: block;
    position: relative;
    border-radius: var(--blog-radius);
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    box-shadow: 0 4px 24px rgba(0,0,0,.18);
}

.featured-hero-img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.featured-hero:hover .featured-hero-img {
    transform: scale(1.02);
}

.featured-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .92)  0%,
        rgba(0, 0, 0, .60)  35%,
        rgba(0, 0, 0, .20)  65%,
        rgba(0, 0, 0, .00) 100%
    );
    pointer-events: none;
}

.featured-hero-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 28px 32px 32px;
}

/* Scoped to (0,2,0) to beat .marketing h1 (0,1,1) in styletours.css */
.featured-hero-body .featured-hero-title {
    color: #fff;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, .7),
        0 1px  3px rgba(0, 0, 0, .9);
    max-width: 720px;
}

.featured-hero-desc {
    color: rgba(255, 255, 255, .88);
    font-size: .975rem;
    line-height: 1.55;
    margin: 0 0 20px;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0,0,0,.6);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--brand-orange);
    color: var(--blog-ink) !important;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 9px 22px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 2px 10px rgba(240, 137, 27, .45);
}

.featured-hero-cta:hover {
    background: #d0730d;
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(240, 137, 27, .55);
}

@media (max-width: 767px) {
    .featured-hero-img  { height: 260px; }
    .featured-hero-body { padding: 18px 20px 22px; }
    .featured-hero-body .featured-hero-title {
        font-size: 1.25rem;
        letter-spacing: -0.01em;
    }
    .featured-hero-desc { font-size: .875rem; }
}

/* Mobile: horizontal scroll strip for category cards.
   overflow-x: auto forces overflow-y: auto (CSS spec), so pt-1 on the
   row gives 4px clearance for the translateY(-3px) hover lift. */
@media (max-width: 575px) {
    .blog-cat-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        margin-left: 0;
        margin-right: 0;
        padding-bottom: 6px;
    }

    .blog-cat-grid::-webkit-scrollbar { display: none; }

    .blog-cat-grid > [class*="col-"] {
        flex: 0 0 78%;
        max-width: 78%;
        scroll-snap-align: start;
        padding-left: 8px;
        padding-right: 8px;
    }

    .blog-cat-grid > [class*="col-"]:first-child { padding-left: 0; }
    .blog-cat-grid > [class*="col-"]:last-child  { padding-right: 15px; }
}

/* ── Blog post page ─────────────────────────────────────────── */

.postext { padding-right: 15px; }

@media (min-width: 992px) {
    .postext { padding-right: 25px; }
}

.postext p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: .95rem;
    line-height: 1.5rem;
}

.postext p:last-child { margin-bottom: 0; }

.postext ul {
    font-size: .95rem;
    line-height: 1.5rem;
    margin-bottom: 25px;
}

.postext p img {
    margin-bottom: 15px;
    width: 100%;
    height: auto;
}

.postext h1 {
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--blog-amber);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.postext h2 {
    margin: 20px 0 8px;
    color: var(--blog-amber);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.postext h3 {
    font-size: 1.1rem;
    margin: 20px 0 8px;
    color: var(--blog-ink);
    font-weight: 700;
    line-height: 1.35;
}

.post-hero {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.post-hero-img {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.post-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .84) 0%,
        rgba(0, 0, 0, .45) 52%,
        rgba(0, 0, 0, .04) 100%
    );
    pointer-events: none;
}

.post-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 20px 24px 22px;
}

.post-hero-content h1 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 6px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .4);
}

.post-hero-meta { color: rgba(255, 255, 255, .82); }

.post-hero-content p {
    margin-bottom: .4rem;
    line-height: 1.4;
    font-size: .9rem;
}

.post-hero-content .author-name { color: rgba(255, 255, 255, .9); }
.post-hero-content .author-name:hover { color: #fff; }

@media (max-width: 800px) {
    .post-hero {
        overflow: hidden;
        border-radius: 8px;
        border: 1px solid #e5e5e5;
        background: #fff;
    }
    .post-hero-img   { display: block; height: 200px; border-radius: 0; }
    .post-hero::after { display: none; }
    .post-hero-content {
        position: static;
        padding: 14px 16px 16px;
    }
    .post-hero-content h1 {
        color: var(--blog-amber);
        font-size: 1.2rem;
        letter-spacing: -0.01em;
        text-shadow: none;
    }
    .post-hero-meta { color: #666; }
    /* Override desktop :hover (0,3,0) that flashes white on the white card */
    .post-hero-content .author-name { color: #404040; }
    .post-hero-content .author-name:hover {
        color: var(--blog-amber);
        text-decoration: underline;
    }
    .post-hero-content .badge-pill {
        border-color: var(--blog-amber) !important;
        color: var(--blog-amber) !important;
    }
}

@media (max-width: 280px) {
    .post-hero-meta { flex-wrap: wrap; row-gap: 2px; }
    .post-hero-meta-sep { display: none; }
    .post-hero-content .badge-pill {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.author-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #999;
    flex-shrink: 0;
}

.author-name {
    color: #404040;
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    transition: color .18s ease;
}
.author-name:hover {
    color: var(--blog-amber);
    text-decoration: underline;
}

.meta-sep { color: #ccc; }

@media (min-width: 992px) {
    .widget-sticky { position: sticky; top: 20px; }
}

.share-btn {
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    border: none !important;
    box-shadow: 0 2px 6px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.18);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.share-btn:hover {
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.18);
    filter: brightness(1.1);
}
.share-btn:active {
    transform: translateY(0) !important;
    filter: brightness(.93) !important;
}

@media (max-width: 575px) {
    .share-btn {
        width: 44px;
        height: 44px;
        min-height: unset;
        border-radius: 50% !important;
        padding: 0;
        font-size: 0;
    }
    nav[aria-label="Share this article"] .col-auto,
    nav[aria-label="Compartir este artículo"] .col-auto {
        padding-right: 4px !important;
    }
}

.share-chatgpt    { background-color: #10a37f; }
.share-perplexity { background-color: #20808D; }
.share-whatsapp   { background-color: #25D366; }
.share-x          { background-color: #1a1a1a; }
.share-grok       { background-color: #7C3AED; }
.share-google     { background-color: #4285F4; }

.blog-tour-card {
    display: flex;
    align-items: stretch;
    gap: 12px;
    padding: 8px;
    border-radius: var(--blog-radius);
    transition: var(--blog-transition);
    text-decoration: none;
    color: var(--blog-body);
}
.blog-tour-card:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
    transform: translateY(-2px);
    color: var(--blog-body);
    text-decoration: none !important;
}
.blog-tour-thumb-wrap {
    flex-shrink: 0;
    width: 72px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
}
.blog-tour-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-tour-card:hover .blog-tour-thumb { transform: scale(1.05); }
.blog-tour-body { flex: 1; min-width: 0; }
.blog-tour-title {
    font-size: .875rem !important;
    font-weight: 700;
    line-height: 1.3;
    color: var(--blog-ink);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.25s ease;
    margin: 0 !important;
    padding: 0;
}
.blog-tour-card:hover .blog-tour-title { color: var(--brand-teal); }
.blog-tour-arrow {
    font-size: .65rem;
    flex-shrink: 0;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.blog-tour-card:hover .blog-tour-arrow { transform: translateX(4px); }
.blog-tour-desc {
    font-size: .78rem;
    line-height: 1.3;
    margin-top: 2px;
    color: var(--blog-muted);
}

.blog-tour-card:last-of-type { margin-bottom: 0 !important; }

.preview-banner {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9999;
    background: linear-gradient(to right, #1d4ed8, #1e3a8a);
    color: white;
    padding: 12px 20px;
    border-bottom: 1px solid #1e40af;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.preview-banner-inner  { max-width: 1200px; margin: 0 auto; }
.preview-banner-spacer { height: 60px; }
.preview-banner-icon   { width: 24px; height: 24px; flex-shrink: 0; }
.preview-banner-status { font-size: 12px; opacity: .95; }

.preview-banner-btn {
    background: rgba(255,255,255,.2);
    padding: 8px 16px;
    border-radius: 6px;
    color: white !important;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s;
    text-decoration: none;
}
.preview-banner-btn:hover,
.preview-banner-btn:focus {
    background: rgba(255,255,255,.3);
    color: white !important;
    text-decoration: none;
}

/* ── Author page ─────────────────────────────────────────────── */

/* Needs (0,2,0) to beat styletours.css .marketing h1 (0,1,1).
   Separate class from .author-name avoids collision with post-hero link. */
.marketing .author-display-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blog-amber);
}

.author-social-links { gap: 10px; }

.author-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f3f4f6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.author-social-btn:hover { background: #e5e7eb; transform: scale(1.12); text-decoration: none; }
.author-social-btn i              { font-size: 1.2rem; }
.author-social-btn .fa-x-twitter  { color: #000; }
.author-social-btn .fa-instagram  { color: #E1306C; }
.author-social-btn .fa-linkedin   { color: #0077B5; }
.author-social-btn .fa-globe      { color: #555; }
.author-social-btn .fa-facebook   { color: #1877F2; }
.author-social-btn .fa-tiktok     { color: #000; }

.author-bio-box { background: rgba(0, 122, 110, .08); line-height: 1.7; }

/* FA4 .fa-whatsapp remapped to FA6 Brands — FA4 doesn't have the brand glyph */
.fa-whatsapp { font-family: "Font Awesome 6 Brands" !important; font-weight: 400; }

.author-photo { min-height: 280px; object-fit: cover; }
@media (max-width: 767px) {
    .author-photo { height: 220px; margin-top: 20px; }
}

/* ── Category page ───────────────────────────────────────────── */

.cat-hero {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a2e;
}
.cat-hero-img { display: block; width: 100%; height: 320px; object-fit: cover; }
.cat-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 32px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.35) 65%,
        transparent 100%
    );
}
.cat-hero-content h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 8px;
    text-shadow: 0 1px 6px rgba(0,0,0,.5);
}
.cat-hero-content p {
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    line-height: 1.55;
    margin: 0;
    max-width: 680px;
    text-shadow: 0 1px 3px rgba(0,0,0,.4);
}

@keyframes gradientDrift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes ruleGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cat-hero-plain {
    --_gradient: linear-gradient(-50deg, #40d4e4, var(--brand-teal), #007888, #0a3858, #009ab0);
    --_bloom:    rgba(0, 172, 190, .38);
    position: relative;
    padding: 52px 44px 48px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--_gradient);
    background-size: 320% 320%;
    animation: gradientDrift 14s ease infinite;
}
.cat-hero-plain[data-theme="sand"] {
    --_gradient: linear-gradient(-50deg, var(--brand-gold), var(--brand-orange), #c86000, #8a4000, #d07010);
    --_bloom:    rgba(240, 137, 27, .45);
}
.cat-hero-plain[data-theme="sunset"] {
    --_gradient: linear-gradient(-50deg, var(--brand-orange), #e03060, var(--brand-magenta), #800050, #c02070);
    --_bloom:    rgba(229, 0, 122, .48);
}
.cat-hero-plain::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,.40);
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,.035) 0px,
        rgba(255,255,255,.035) 1px,
        transparent 1px,
        transparent 22px
    );
    pointer-events: none;
}
.cat-hero-plain::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, var(--_bloom) 0%, transparent 65%);
    pointer-events: none;
}
.cat-hero-plain__inner         { position: relative; z-index: 1; }
.cat-hero-plain__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.cat-hero-plain__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    animation: fadeUp .5s ease both;
}
.cat-hero-plain__label .fa { font-size: .65rem; }
.cat-hero-plain__count {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    animation: fadeUp .5s ease .1s both;
}
.cat-hero-plain h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -.02em;
    margin: 0 0 14px;
    max-width: 760px;
    text-shadow: 0 1px 3px rgba(0,0,0,.55), 0 2px 20px rgba(0,0,0,.40);
    animation: fadeUp .5s ease .15s both;
}
.cat-hero-plain p {
    color: rgba(255,255,255,.92);
    font-size: .97rem;
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 620px;
    text-shadow: 0 1px 3px rgba(0,0,0,.65), 0 2px 10px rgba(0,0,0,.50);
    animation: fadeUp .5s ease .25s both;
}
.cat-hero-plain__rule {
    display: block;
    height: 3px;
    width: 56px;
    background: rgba(255,255,255,.45);
    border-radius: 2px;
    transform-origin: left;
    animation: ruleGrow .5s cubic-bezier(.22,1,.36,1) .35s both;
}

@media (max-width: 767px) {
    .cat-hero { border: 1px solid #e5e5e5; background: #fff; margin-bottom: 24px; }
    .cat-hero-img     { height: 200px; opacity: 1; border-radius: 0; }
    .cat-hero-content { position: static; background: none; padding: 14px 16px 16px; }
    .cat-hero-content h1 { color: var(--blog-amber); font-size: 1.4rem; text-shadow: none; }
    .cat-hero-content p  { color: #555; text-shadow: none; }
    .cat-hero-plain          { padding: 24px 20px 22px; }
    .cat-hero-plain h1       { font-size: 1.45rem; letter-spacing: -.01em; }
    .cat-hero-plain__count   { display: none; }
}
