.et-mh-single-article {
    --mh-text-color: var(--et-text-dark);
    --mh-soft-text: var(--et-text-soft);
    --mh-border: var(--et-border-gray);
    --mh-accent: var(--et-primary-blue);
    --mh-accent-bg: var(--et-bg-blue-extra-light);
    --mh-gap-between-blocks: 30px;
    --single-mh-gap: 30px;
    font-size: 15px;
    line-height: 1.58;
    color: var(--mh-text-color);
}
.et-mh-single-top.et-mh-top {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "crumb crumb" "head logo";
    column-gap: 32px;
    row-gap: 0;
    position: relative;
    padding-top: clamp(24px, 3.5vw, 48px);
    padding-bottom: var(--single-mh-gap);
}
.et-mh-single-top .et-breadcrumbs {
    grid-area: crumb;
    margin: 0 0 var(--single-mh-gap);
    position: relative;
    padding-bottom: 10px;
    font-size: 0;
}
.et-mh-single-top .et-breadcrumbs a {
    font-size: 16px;
    color: #75787b;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.18s;
}
.et-mh-single-top .et-breadcrumbs a:hover {
    color: #3459af;
}
.et-mh-single-top .et-breadcrumbs .current,
.et-mh-single-top .et-breadcrumbs span:last-child {
    font-size: 16px;
    color: #3c3c3c;
    font-weight: 400;
}
.et-mh-single-top .et-breadcrumbs .sep {
    font-size: 16px;
    opacity: 0.55;
    margin: 0 4px;
}
.et-mh-single-top .et-breadcrumbs::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, #d8dde3 0%, #e6e9ee 55%, rgba(230, 233, 238, 0) 100%);
    border-radius: 1px;
}
.et-mh-single-top .et-cat-archive-head {
    grid-area: head;
    align-self: center;
    margin: 0;
}
.et-cat-archive-title {
    margin: 0;
    font-size: 38px;
    line-height: 1.05;
    font-weight: 600;
    color: #000;
    letter-spacing: -0.3px;
}
@media (max-width: 640px) {
    .et-cat-archive-title {
        font-size: 32px;
    }
}
.et-mediahub-tagline {
    margin: 14px 0 0;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    max-width: 880px;
}
.et-mediahub-tagline p {
    margin: 0;
}
.et-mh-single-top .et-mh-logo-wrap {
    grid-area: logo;
    align-self: center;
    width: 115px;
    max-width: 24vw;
}
.et-mh-single-top .et-mh-logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 640px) {
    .et-mh-single-top.et-mh-top {
        grid-template-areas: "crumb crumb" "title logo" "tagline tagline" "meta meta";
        grid-template-columns: 1fr auto;
        row-gap: 8px;
    }
    .et-mh-single-top .et-breadcrumbs {
        margin: 0 0 var(--single-mh-gap);
    }
    .et-mh-single-top .et-cat-archive-head {
        display: contents;
    }
    .et-mh-single-top .et-cat-archive-title {
        grid-area: title;
        margin: 0;
        text-align: left;
        align-self: center;
    }
    .et-mh-single-top .et-mediahub-tagline {
        grid-area: tagline;
        margin: 6px 0 0;
    }
    .et-mh-single-top .et-mh-logo-wrap {
        grid-area: logo;
        width: 90px;
        justify-self: end;
        display: none;
    }
    .et-mh-single-top .et-mh-article-meta {
        grid-area: meta;
    }
}
.et-mh-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 22px;
    font-size: 13px;
    line-height: 1.3;
    color: var(--mh-soft-text);
    margin-top: 18px;
}
@media (max-width: 640px) {
    .et-mh-article-meta {
        margin-top: 10px;
    }
}
.et-mh-meta-cat {
    background: var(--mh-accent-bg);
    color: var(--mh-accent);
    padding: 6px 14px 7px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: background-color 0.18s;
}
.et-mh-meta-cat:hover,
.et-mh-meta-cat:focus-visible {
    background: var(--et-bg-blue-light);
    color: var(--mh-accent);
}
.et-mh-dot {
    opacity: 0.5;
}
.et-mh-share-inline {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 680px) {
    .et-mh-share-inline {
        width: 100%;
        order: 99;
        margin-left: 0;
        justify-content: flex-start;
    }
}
.et-mh-share-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--mh-soft-text);
}
.et-mh-share-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mh-border);
    background: #fff;
    color: #4a5662;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.2s;
    position: relative;
}
.et-mh-share-btn:hover,
.et-mh-share-btn:focus-visible {
    background: var(--mh-accent);
    border-color: var(--mh-accent);
    color: #fff;
    box-shadow: 0 4px 16px -4px rgba(21, 74, 220, 0.45);
}
.et-mh-share-btn.is-copied {
    background: #17d45f;
    border-color: #17d45f;
    color: #fff;
}
.et-mh-share-btn.is-copied::after {
    content: "Copiat!";
    position: absolute;
    bottom: calc(100% + 6px);
    background: #17d45f;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px 5px;
    border-radius: 6px;
    white-space: nowrap;
    animation: etCopy 1.4s ease forwards;
}
@keyframes etCopy {
    0% {
        opacity: 0;
        transform: translateY(4px);
    }
    12% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-4px);
    }
}
.et-mh-hero {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto clamp(34px, 5vw, 46px);
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
}
.et-mh-hero-img {
    width: 100%;
    display: block;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.et-mh-hero.has-tagline-overlay {
    --overlay-horizontal-gap: 15px;
    --overlay-vertical-gap: 15px;
    --overlay-width-percent: 66%;
}
.et-mh-hero-overlay {
    position: absolute;
    left: var(--overlay-horizontal-gap, 15px);
    bottom: var(--overlay-vertical-gap, 15px);
    width: var(--overlay-width-percent, 66%);
    max-width: var(--overlay-width-percent, 66%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 20px 24px 22px;
    box-shadow: 0 6px 28px -10px rgba(0, 0, 0, 0.2), 0 2px 10px -4px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.et-mh-hero-overlay .et-mediahub-tagline {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #75787b;
}
.et-mh-hero-overlay .et-mediahub-tagline p {
    margin: 0;
}
@media (max-width: 900px) {
    .et-mh-hero-overlay {
        width: 72%;
        max-width: 72%;
    }
}
@media (max-width: 640px) {
    .et-mh-hero-overlay {
        display: none !important;
    }
}
.et-mh-hero-yt-shell {
    position: absolute;
    right: 0;
    bottom: 0;
    width: clamp(240px, 28%, 420px);
    background: #fff;
    border-radius: 18px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 26px 18px;
    box-sizing: border-box;
    box-shadow: 0 4px 18px -8px rgba(0, 0, 0, 0.18);
    z-index: 3;
    overflow: hidden;
}
@media (max-width: 900px) {
    .et-mh-hero-yt-shell {
        width: clamp(220px, 40%, 360px);
        padding: 14px 22px 16px;
    }
}
@media (max-width: 640px) {
    .et-mh-hero-yt-shell {
        position: static;
        width: 100%;
        margin-top: 14px;
        padding: 14px 20px 16px;
        border-radius: 18px 0 0 0;
    }
}
.et-mh-hero-yt-btn {
    --cta-color: #154adc;
    --cta-color-hover: #123ec7;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--cta-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    padding: 4px 0;
    border-radius: 12px;
    transition: color 0.18s;
    text-align: center;
}
.et-mh-hero-yt-btn:hover,
.et-mh-hero-yt-btn:focus-visible {
    color: var(--cta-color-hover);
    text-decoration: underline;
    outline: none;
}
.et-mh-hero-yt-ic {
    display: flex;
    align-items: center;
}
.et-mh-hero-yt-ic svg {
    display: block;
    width: 30px;
    height: 30px;
}
.yt-outline {
    stroke-width: 1.2;
}
.et-mh-hero-yt-label {
    display: inline-block;
}
.et-mh-hero-caption {
    font-size: 12px;
    line-height: 1.4;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    padding: 8px 12px;
    border-radius: 8px;
    position: absolute;
    left: 12px;
    bottom: 12px;
    max-width: 60%;
    color: var(--et-text-mid);
    z-index: 2;
}
@media (max-width: 640px) {
    .et-mh-hero-caption {
        max-width: 85%;
        font-size: 11px;
        left: 10px;
        right: 10px;
    }
}
.et-mh-article-body {
    font-size: 16px;
    line-height: 1.6;
    color: #75787b;
    margin-bottom: clamp(46px, 6vw, 76px);
}
.et-mh-article-body p {
    margin: 0 0 1.25em;
}
.et-mh-article-body p:last-child {
    margin-bottom: 0;
}
.et-mh-article-body h2,
.et-mh-article-body h3,
.et-mh-article-body h4,
.et-mh-article-body h5 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.2px;
    color: #000;
    margin: 2.2em 0 0.9em;
}
.et-mh-article-body h2 {
    font-size: clamp(26px, 3.2vw, 32px);
}
.et-mh-article-body h3 {
    font-size: clamp(22px, 2.6vw, 26px);
}
.et-mh-article-body h4 {
    font-size: 20px;
}
.et-mh-article-body h5 {
    font-size: 18px;
}
.et-mh-article-body a {
    color: var(--mh-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: color 0.18s;
    word-wrap: break-word;
}
.et-mh-article-body a:hover,
.et-mh-article-body a:focus-visible {
    color: var(--et-secondary-blue);
}
.et-mh-article-body ul,
.et-mh-article-body ol {
    /* padding-left: 1.25em; */
    margin: 0 0 1.3em;
}
.et-mh-article-body li {
    margin: 0.45em 0;
}
.et-mh-article-body blockquote {
    margin: 2.2em 0;
    padding: 18px 22px 20px;
    background: #fff;
    border: 1px solid var(--mh-border);
    border-left: 6px solid var(--mh-accent);
    border-radius: 0 14px 14px 0;
    font-size: 20px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 500;
    color: #000;
    position: relative;
}
.et-mh-article-body blockquote p {
    margin: 0;
}
.et-mh-article-body code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Roboto Mono", monospace;
    font-size: 0.85em;
    background: #182232;
    color: #e2f1ff;
    padding: 2px 6px 3px;
    border-radius: 6px;
}
.et-mh-article-body pre {
    background: #182232;
    color: #e2f1ff;
    padding: 18px 20px;
    border-radius: 14px;
    overflow: auto;
    font-size: 14px;
    line-height: 1.45;
    margin: 2.2em 0;
}
.et-mh-article-body figure {
    margin: 2.2em 0;
}
.et-mh-article-body figure img {
    width: 100%;
    display: block;
    border-radius: 16px;
    height: auto;
}
.et-mh-article-body figcaption {
    margin-top: 8px;
    font-size: 13px;
    color: var(--mh-soft-text);
    line-height: 1.4;
}
.et-mh-pages-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    margin: 40px 0 0;
    align-items: center;
}
.et-mh-pages-title {
    font-weight: 600;
}
.et-mh-page-num {
    display: inline-block;
    padding: 6px 12px 7px;
    background: var(--et-bg-blue-extra-light);
    color: var(--mh-accent);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 4px;
}
.et-mh-article-footer {
    margin-bottom: clamp(50px, 7vw, 110px);
}
.et-mh-tags {
    margin: 0 0 clamp(50px, 6vw, 80px);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
}
.et-mh-tags-label {
    font-weight: 600;
    color: #000;
}
.et-mh-tag-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.et-mh-tag-list a {
    display: inline-block;
    background: var(--et-bg-blue-extra-light);
    color: #000;
    border: 1px solid var(--mh-border);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px 9px;
    border-radius: 18px;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.et-mh-tag-list a:hover,
.et-mh-tag-list a:focus-visible {
    background: var(--mh-accent);
    color: #fff;
    border-color: var(--mh-accent);
}
.et-mh-related {
    margin: 0;
    padding: 0;
}
.et-mh-related-title {
    margin: 0 0 24px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
}
.et-mh-related-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.et-mh-related-card {
    background: #fff;
    border: 1px solid var(--mh-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.et-mh-related-card:hover,
.et-mh-related-card:focus-within {
    transform: translateY(-4px);
    border-color: #d3d9df;
    box-shadow: 0 10px 28px -10px rgba(0, 0, 0, 0.15), 0 4px 10px -4px rgba(0, 0, 0, 0.08);
}
.et-mh-related-thumb {
    display: block;
    aspect-ratio: 16/10;
    background: var(--et-bg-blue-light);
    overflow: hidden;
}
.et-mh-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.6, 0.3, 1);
}
.et-mh-related-card:hover .et-mh-related-thumb img {
    transform: scale(1.05);
}
.et-mh-related-thumb--ph {
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(135deg, #f0f3f6, #d8dde3);
}
.et-mh-related-card-title {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 600;
    margin: 12px 14px 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.et-mh-related-card-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}
.et-mh-related-card-title a:hover,
.et-mh-related-card-title a:focus-visible {
    color: var(--mh-accent);
}
.et-mh-single-article a:focus-visible,
.et-mh-share-btn:focus-visible,
.et-mh-hero-yt-btn:focus-visible {
    outline: 2px solid var(--mh-accent);
    outline-offset: 2px;
    border-radius: 6px;
}
.et-mh-hero-yt-btn:focus-visible {
    outline-offset: 4px;
    border-radius: 14px;
}
@media (prefers-color-scheme: dark) {
    .et-cat-archive-title {
        color: #000 !important;
    }
    .et-mh-hero-yt-shell {
        background: #fff;
    }
    .et-mh-hero-yt-btn {
        color: #154adc;
    }
    .et-mh-hero-yt-btn:hover {
        color: #123ec7;
    }
    .et-mh-article-body,
    .et-mh-article-body p {
        color: #75787b !important;
    }
    .et-mh-share-btn {
        background: #fff;
        border-color: var(--mh-border);
        color: #4a5662;
    }
    .et-mh-share-btn:hover {
        background: var(--mh-accent);
        color: #fff;
        border-color: var(--mh-accent);
    }
    .et-mh-related-card {
        background: #fff;
        border-color: var(--mh-border);
    }
    .et-mh-tag-list a {
        background: var(--et-bg-blue-extra-light);
        color: #000;
    }
    .et-mh-tag-list a:hover {
        background: var(--mh-accent);
        color: #fff;
        border-color: var(--mh-accent);
    }
}

.et-mh-single-article .et-mh-article-body .wp-block-embed,
.et-mh-single-article .et-mh-article-body figure.wp-block-video {
    margin: 2.2em auto;
    max-width: 100%;
}

.et-mh-single-article .et-mh-article-body .wp-block-embed__wrapper,
.et-mh-single-article .et-mh-article-body .wp-block-embed-youtube .wp-block-embed__wrapper,
.et-mh-single-article .et-mh-article-body iframe[src*="youtube.com"],
.et-mh-single-article .et-mh-article-body iframe[src*="youtu.be"] {
    display: block;
    width: 100% !important;
    max-width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    background: #000;
    border: 0;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
}

.et-mh-single-article .et-mh-article-body .wp-block-embed__wrapper > iframe {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16/9;
}

.et-mh-single-article .et-mh-article-body .wp-block-embed:not(.alignwide):not(.alignfull):not(.yt-full) {
    max-width: 880px;
}

.et-mh-single-article .et-mh-article-body .wp-block-embed.alignwide {
    width: min(1180px, 95vw);
    max-width: min(1180px, 95vw);
}

.et-mh-single-article .et-mh-article-body .wp-block-embed.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.et-mh-single-article .et-mh-article-body .wp-block-embed.yt-large {
    width: min(1280px, 96vw);
    max-width: min(1280px, 96vw);
}

.et-mh-single-article .et-mh-article-body .wp-block-embed.yt-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.et-mh-single-article .et-mh-article-body .wp-block-embed figcaption {
    font-size: 13px;
    color: #75787b;
    text-align: center;
    margin-top: 8px;
}

.et-mh-single-article .et-mh-article-body :where(figure img) {
    border-radius: 16px;
    height: auto;
    max-width: 100%;
}

.et-mh-single-article .et-mh-article-body .mh-preserve :where(img, iframe) {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.et-mh-single-article .et-mh-article-body .alignwide {
    width: min(1180px, 95vw);
    margin-left: 50%;
    transform: translateX(-50%);
}

.et-mh-single-article .et-mh-article-body .alignfull {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    max-width: 100vw;
}

.et-mh-single-article .et-mh-article-body .alignfull + .alignfull {
    margin-top: 40px;
}

@media (max-width: 640px) {
    .et-mh-single-article .et-mh-article-body .alignwide,
    .et-mh-single-article .et-mh-article-body .alignfull,
    .et-mh-single-article .et-mh-article-body .wp-block-embed.alignfull,
    .et-mh-single-article .et-mh-article-body .wp-block-embed.yt-full {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        transform: none;
    }
}

.et-mh-single-article .et-mh-article-body .mh-unboxed {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.et-mh-single-article .et-mh-article-body .mh-protect * {
    all: revert;
    font-family: inherit;
    box-sizing: border-box;
}