:root {
    --lpa-accent: #15803d;
    --lpa-accent-dark: #166534;
    --lpa-hero-bg: #eaf6ff;
    --lpa-heading: #071a3a;
    --lpa-ink: #071a3a;
    --lpa-muted: #5d6b84;
    --lpa-card-bg: #ffffff;
    --lpa-page-bg: #ffffff;
    --lpa-line: #e7eaf0;
    --lpa-soft: #f6f8fc;
    --lpa-white: #ffffff;
    --lpa-radius: 18px;
    --lpa-shadow: 0 18px 50px rgba(16, 36, 78, .10);
}

.lpa-page,
.lpa-archive,
.lpa-single {
    color: var(--lpa-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.lpa-page *, .lpa-archive *, .lpa-single * { box-sizing: border-box; }
.lpa-container {
    width: min(1268px, calc(100% - 48px));
    margin-inline: auto;
}

/* Blog archive / shortcode */
.lpa-archive {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: var(--lpa-page-bg);
}

.lpa-archive__top {
    background: var(--lpa-hero-bg);
    padding: 70px 0 72px;
}

.lpa-archive__hero {
    max-width: 900px;
    margin: 0;
    text-align: left;
}

.lpa-archive__hero h1,
.lpa-single__hero h1 {
    margin: 0;
    color: var(--lpa-heading);
    font-size: clamp(38px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -.035em;
    font-weight: 780;
}

.lpa-archive__hero p {
    max-width: 610px;
    margin: 10px 0 0;
    color: var(--lpa-muted);
    font-size: 15px;
    line-height: 1.55;
}

.lpa-controls {
    margin-top: 30px;
}

.lpa-search {
    width: min(100%, 520px);
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 13px;
    border: 1px solid #d6dde7;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(15, 32, 67, .11);
}

.lpa-search:focus-within {
    border-color: color-mix(in srgb, var(--lpa-accent) 42%, transparent);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--lpa-accent) 10%, transparent), 0 2px 5px rgba(15, 32, 67, .10);
}

.lpa-search svg {
    width: 17px;
    height: 17px;
    color: #66758d;
    flex: 0 0 auto;
}

.lpa-search input,
.lpa-search input[type="search"] {
    width: 100%;
    height: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    color: #17233d;
    font: inherit;
    font-size: 13px;
    line-height: 38px;
    -webkit-appearance: none;
}

.lpa-search input::placeholder {
    color: #60708a;
    opacity: 1;
}

.lpa-search input::-webkit-search-cancel-button {
    cursor: pointer;
}

.lpa-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 17px;
}

.lpa-filter {
    appearance: none;
    min-height: 31px;
    margin: 0;
    padding: 5px 12px;
    border: 1px solid #d7dde6;
    border-radius: 999px;
    background: #ffffff;
    color: #071426;
    font: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.25;
    cursor: pointer;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease, transform .18s ease;
    box-shadow: none;
}

.lpa-filter:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--lpa-accent) 32%, transparent);
    color: var(--lpa-accent);
}

.lpa-filter.is-active {
    color: #ffffff;
    border-color: var(--lpa-accent);
    background: var(--lpa-accent);
    box-shadow: none;
}
.lpa-filter.is-active:hover {
    border-color: var(--lpa-accent-dark);
    background: var(--lpa-accent-dark);
    color: #ffffff;
}

.lpa-archive__body {
    min-height: 210px;
    padding: 64px 0 90px;
    background: var(--lpa-page-bg);
}

.lpa-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.lpa-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--lpa-line);
    border-radius: var(--lpa-radius);
    background: var(--lpa-card-bg);
    box-shadow: 0 12px 34px rgba(19, 37, 78, .065);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lpa-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--lpa-accent) 22%, transparent); box-shadow: var(--lpa-shadow); }
.lpa-card[hidden] { display: none !important; }
.lpa-card__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: color-mix(in srgb, var(--lpa-accent) 8%, #ffffff); }
.lpa-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 56%, rgba(8,23,52,.18)); opacity: .7; pointer-events: none; }
.lpa-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.lpa-card:hover .lpa-card__media img { transform: scale(1.055); }
.lpa-card__placeholder { display: grid; place-items: center; width: 100%; height: 100%; color: var(--lpa-accent); background: linear-gradient(135deg, color-mix(in srgb, var(--lpa-accent) 9%, #ffffff), #ffffff); }
.lpa-card__placeholder svg { width: 54px; opacity: .7; }
.lpa-card__body { padding: 22px 22px 20px; }
.lpa-card__topline { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 15px; }
.lpa-chip { display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; border-radius: 999px; background: color-mix(in srgb, var(--lpa-accent) 10%, #ffffff); color: var(--lpa-accent); font-size: 11px; font-weight: 800; letter-spacing: .035em; text-transform: uppercase; }
.lpa-card__date { color: #8a94a6; font-size: 12px; white-space: nowrap; }
.lpa-card__title { margin: 0 0 11px; font-size: clamp(20px, 2vw, 24px); line-height: 1.27; letter-spacing: -.025em; font-weight: 760; }
.lpa-card__title a { color: var(--lpa-ink); text-decoration: none; }
.lpa-card__title a:hover { color: var(--lpa-accent); }
.lpa-card__excerpt { min-height: 74px; margin: 0; color: var(--lpa-muted); font-size: 14px; line-height: 1.72; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.lpa-card__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; margin-top: 20px; padding-top: 17px; border-top: 1px solid var(--lpa-line); }
.lpa-card__meta { display: flex; flex-direction: column; gap: 7px; color: #7b879c; font-size: 11px; }
.lpa-card__meta > span { display: flex; align-items: center; gap: 7px; }
.lpa-card__avatar { width: 26px !important; height: 26px !important; border-radius: 50%; object-fit: cover; }
.lpa-card__link { display: inline-flex; align-items: center; gap: 6px; color: var(--lpa-accent); font-size: 13px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.lpa-card__link svg { width: 18px; transition: transform .2s ease; }
.lpa-card__link:hover { color: var(--lpa-accent-dark); }
.lpa-card__link:hover svg { transform: translateX(4px); }

.lpa-empty {
    margin: 38px auto 0;
    padding: 0;
    text-align: center;
    border: 0;
    background: transparent;
}
.lpa-empty[hidden] { display: none; }
.lpa-empty p {
    margin: 0;
    color: #50617d;
    font-size: 14px;
    line-height: 1.5;
}


.lpa-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--lpa-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.lpa-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    opacity: .75;
}

/* Single article */
.lpa-single { padding: clamp(50px, 7vw, 88px) 0 100px; background: linear-gradient(180deg, var(--lpa-hero-bg) 0, var(--lpa-page-bg) 380px); }
.lpa-single__container { max-width: 1180px; }
.lpa-back { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 44px; color: #59657b; font-size: 14px; font-weight: 700; text-decoration: none; }
.lpa-back svg { width: 18px; transition: transform .2s ease; }
.lpa-back:hover { color: var(--lpa-accent); }
.lpa-back:hover svg { transform: translateX(-3px); }
.lpa-single__hero { max-width: 920px; margin: 0 auto 46px; text-align: center; }
.lpa-single__hero h1 { font-size: clamp(38px, 5.5vw, 66px); line-height: 1.06; letter-spacing: -.045em; }
.lpa-single__eyebrow { display: flex; justify-content: center; align-items: center; gap: 12px; margin-bottom: 18px; color: #77839a; font-size: 13px; font-weight: 700; }
.lpa-single__lead { max-width: 760px; margin: 22px auto 0; color: var(--lpa-muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.lpa-single__meta { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 18px 26px; margin-top: 27px; color: #68758b; font-size: 13px; }
.lpa-single__meta > span { display: inline-flex; align-items: center; gap: 8px; }
.lpa-single__meta svg { width: 18px; }
.lpa-author-line img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.lpa-author-line > span { display: grid; text-align: left; line-height: 1.25; }
.lpa-author-line strong { color: var(--lpa-ink); }
.lpa-author-line small { color: #8a94a6; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.lpa-single__featured { overflow: hidden; margin: 0 0 54px; border-radius: 24px; box-shadow: 0 28px 70px rgba(16,36,78,.14); background: color-mix(in srgb, var(--lpa-accent) 8%, #ffffff); }
.lpa-single__featured img { display: block; width: 100%; max-height: 650px; object-fit: cover; }
.lpa-single__layout { display: grid; grid-template-columns: 74px minmax(0, 760px); justify-content: center; gap: 42px; }
.lpa-share { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.lpa-share__label { margin-bottom: 2px; color: #8a94a6; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lpa-share a, .lpa-share button { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--lpa-line); border-radius: 50%; background: #fff; color: #526078; font: inherit; font-size: 13px; font-weight: 800; text-decoration: none; cursor: pointer; transition: .2s ease; box-shadow: 0 7px 18px rgba(20,34,66,.05); }
.lpa-share a:hover, .lpa-share button:hover, .lpa-share button.is-copied { color: #fff; border-color: var(--lpa-accent); background: var(--lpa-accent); transform: translateY(-2px); }
.lpa-share button svg { width: 18px; }
.lpa-copy-note { position: absolute; top: 100%; width: 100px; margin-top: 8px; color: var(--lpa-accent); font-size: 11px; text-align: center; }
.lpa-single__content { min-width: 0; color: #33415c; font-size: 17px; line-height: 1.86; }
.lpa-single__content > *:first-child { margin-top: 0; }
.lpa-single__content h2, .lpa-single__content h3, .lpa-single__content h4 { color: var(--lpa-ink); line-height: 1.25; letter-spacing: -.025em; }
.lpa-single__content h2 { margin: 2.2em 0 .75em; font-size: clamp(27px, 3vw, 36px); }
.lpa-single__content h3 { margin: 1.8em 0 .65em; font-size: 24px; }
.lpa-single__content p { margin: 0 0 1.4em; }
.lpa-single__content a { color: var(--lpa-accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.lpa-single__content img { max-width: 100%; height: auto; border-radius: 16px; }
.lpa-single__content blockquote { margin: 2em 0; padding: 24px 28px; border-left: 4px solid var(--lpa-accent); border-radius: 0 14px 14px 0; background: var(--lpa-soft); color: #263654; font-size: 19px; font-weight: 650; }
.lpa-single__content ul, .lpa-single__content ol { margin: 0 0 1.5em; padding-left: 1.35em; }
.lpa-single__content li { margin-bottom: .55em; }
.lpa-single__content table { width: 100%; border-collapse: collapse; margin: 2em 0; font-size: 14px; overflow: hidden; border-radius: 12px; }
.lpa-single__content th, .lpa-single__content td { padding: 13px 14px; border: 1px solid var(--lpa-line); text-align: left; }
.lpa-single__content th { background: var(--lpa-soft); color: var(--lpa-ink); }
.lpa-single__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 42px; padding-top: 25px; border-top: 1px solid var(--lpa-line); }
.lpa-single__tags a { padding: 7px 12px; border-radius: 999px; background: var(--lpa-soft); color: #59657b; font-size: 12px; font-weight: 700; text-decoration: none; }
.lpa-author-box { display: flex; align-items: center; gap: 18px; margin-top: 30px; padding: 24px; border: 1px solid var(--lpa-line); border-radius: 18px; background: linear-gradient(135deg, #f9fbff, #fff); }
.lpa-author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.lpa-author-box span { color: var(--lpa-accent); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.lpa-author-box h2 { margin: 2px 0 4px; font-size: 20px; }
.lpa-author-box p { margin: 0; color: var(--lpa-muted); font-size: 14px; line-height: 1.6; }
.lpa-related { margin-top: 100px; padding-top: 62px; border-top: 1px solid var(--lpa-line); }
.lpa-related__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.lpa-related__heading h2 { margin: 0; font-size: clamp(29px, 4vw, 42px); letter-spacing: -.035em; }
.lpa-related__heading .lpa-kicker { margin-bottom: 7px; }
.lpa-related__heading > a { color: var(--lpa-accent); font-size: 14px; font-weight: 800; text-decoration: none; }

.screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 980px) {
    .lpa-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lpa-single__layout { grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
    .lpa-share { position: static; flex-direction: row; justify-content: center; order: 2; margin-top: 20px; }
    .lpa-share__label { margin: 0 3px 0 0; }
    .lpa-copy-note { position: static; width: auto; margin: 0 0 0 4px; }
}

@media (max-width: 680px) {
    .lpa-container { width: min(100% - 28px, 1268px); }
    .lpa-archive__top { padding: 48px 0 46px; }
    .lpa-archive__hero h1, .lpa-single__hero h1 { font-size: clamp(34px, 10vw, 44px); }
    .lpa-archive__hero p { font-size: 14px; }
    .lpa-controls { margin-top: 24px; }
    .lpa-search { width: 100%; }
    .lpa-filters { flex-wrap: nowrap; overflow-x: auto; margin-inline: -14px; padding: 0 14px 7px; scrollbar-width: none; }
    .lpa-filters::-webkit-scrollbar { display: none; }
    .lpa-filter { flex: 0 0 auto; }
    .lpa-archive__body { padding: 44px 0 70px; }
    .lpa-grid { grid-template-columns: 1fr; gap: 20px; }
    .lpa-card__excerpt { min-height: auto; }
    .lpa-single { padding-top: 36px; }
    .lpa-back { margin-bottom: 30px; }
    .lpa-single__featured { margin-bottom: 38px; border-radius: 16px; }
    .lpa-single__meta { gap: 12px 17px; }
    .lpa-single__content { font-size: 16px; line-height: 1.78; }
    .lpa-share { flex-wrap: wrap; }
    .lpa-related { margin-top: 68px; padding-top: 44px; }
    .lpa-related__heading { align-items: flex-start; flex-direction: column; }
    .lpa-author-box { align-items: flex-start; }
    .lpa-card__footer { align-items: center; }
}

/* =========================================================
   Single article layout hardening — v1.2.2
   Keeps the template full-width while the content stays 1100px.
   ========================================================= */
.lpa-single {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding: clamp(46px, 6vw, 76px) 0 clamp(72px, 8vw, 108px) !important;
    overflow: hidden;
    background: linear-gradient(180deg, var(--lpa-hero-bg) 0, var(--lpa-page-bg) 470px) !important;
}

.lpa-single .lpa-single__container {
    width: min(1100px, calc(100% - 48px)) !important;
    max-width: 1100px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 0 !important;
    background: transparent !important;
}

.lpa-single .lpa-back {
    margin: 0 0 clamp(34px, 4vw, 48px) !important;
}

.lpa-single .lpa-single__hero {
    width: 100%;
    max-width: 980px !important;
    margin: 0 auto clamp(38px, 5vw, 54px) !important;
    padding: 0 !important;
    text-align: center;
}

.lpa-single .lpa-single__eyebrow {
    flex-wrap: wrap;
    margin-bottom: 18px !important;
}

.lpa-single .lpa-single__hero h1 {
    width: 100%;
    max-width: 980px;
    margin: 0 auto !important;
    color: var(--lpa-heading) !important;
    font-size: clamp(36px, 4.05vw, 58px) !important;
    font-weight: 800 !important;
    line-height: 1.08 !important;
    letter-spacing: -.043em !important;
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: balance;
}

.lpa-single .lpa-single__lead {
    max-width: 790px !important;
    margin: 22px auto 0 !important;
    font-size: clamp(17px, 1.55vw, 20px) !important;
    line-height: 1.65 !important;
    text-wrap: pretty;
}

.lpa-single .lpa-single__meta {
    margin-top: 26px !important;
}

.lpa-single .lpa-single__featured {
    width: 100%;
    margin: 0 0 clamp(42px, 5vw, 58px) !important;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 22px !important;
    background: color-mix(in srgb, var(--lpa-accent) 9%, #ffffff);
    box-shadow: 0 24px 64px rgba(16, 36, 78, .13) !important;
}

.lpa-single .lpa-single__featured img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
    border: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
}

.lpa-single .lpa-single__layout {
    display: grid !important;
    grid-template-columns: 54px minmax(0, 760px) !important;
    justify-content: center !important;
    gap: 34px !important;
    width: 100%;
    margin: 0 auto !important;
}

.lpa-single .lpa-share {
    top: 96px;
}

.lpa-single .lpa-single__content {
    width: 100%;
    max-width: 760px;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 17px !important;
    line-height: 1.84 !important;
}

.lpa-single .lpa-single__content h2 {
    font-size: clamp(27px, 2.7vw, 36px) !important;
}

.lpa-single .lpa-single__content h3 {
    font-size: clamp(22px, 2.2vw, 27px) !important;
}

.lpa-single .lpa-single__content figure,
.lpa-single .lpa-single__content .wp-block-image {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.lpa-single .lpa-single__content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.lpa-single .lpa-author-box {
    width: 100%;
}

.lpa-single .lpa-related {
    width: 100%;
    margin-top: clamp(72px, 8vw, 100px) !important;
}

@media (max-width: 900px) {
    .lpa-single .lpa-single__container {
        width: min(100% - 32px, 1100px) !important;
    }

    .lpa-single .lpa-single__hero {
        max-width: 760px !important;
    }

    .lpa-single .lpa-single__hero h1 {
        max-width: 760px;
        font-size: clamp(34px, 5vw, 42px) !important;
        line-height: 1.1 !important;
        letter-spacing: -.035em !important;
    }

    .lpa-single .lpa-single__lead {
        max-width: 700px !important;
        font-size: 17px !important;
    }

    .lpa-single .lpa-single__layout {
        grid-template-columns: minmax(0, 760px) !important;
        gap: 24px !important;
    }

    .lpa-single .lpa-share {
        position: static !important;
        order: 2;
        flex-direction: row !important;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 12px !important;
    }
}

@media (max-width: 640px) {
    .lpa-single {
        padding: 30px 0 72px !important;
    }

    .lpa-single .lpa-single__container {
        width: min(100% - 24px, 1100px) !important;
    }

    .lpa-single .lpa-back {
        margin-bottom: 28px !important;
        font-size: 13px;
    }

    .lpa-single .lpa-single__hero {
        margin-bottom: 32px !important;
        text-align: left !important;
    }

    .lpa-single .lpa-single__eyebrow {
        justify-content: flex-start !important;
        gap: 8px !important;
        margin-bottom: 14px !important;
    }

    .lpa-single .lpa-single__hero h1 {
        margin-left: 0 !important;
        font-size: clamp(31px, 9vw, 38px) !important;
        line-height: 1.12 !important;
        letter-spacing: -.032em !important;
        text-align: left !important;
        text-wrap: wrap;
    }

    .lpa-single .lpa-single__lead {
        margin: 16px 0 0 !important;
        font-size: 16px !important;
        line-height: 1.62 !important;
        text-align: left !important;
    }

    .lpa-single .lpa-single__meta {
        justify-content: flex-start !important;
        gap: 12px 16px !important;
        margin-top: 20px !important;
        text-align: left;
    }

    .lpa-single .lpa-single__meta .lpa-author-line {
        flex: 0 0 100%;
    }

    .lpa-single .lpa-single__featured {
        margin-bottom: 32px !important;
        border-radius: 14px !important;
        box-shadow: 0 16px 38px rgba(16, 36, 78, .11) !important;
    }

    .lpa-single .lpa-single__featured img {
        aspect-ratio: 16 / 10;
    }

    .lpa-single .lpa-single__content {
        font-size: 16px !important;
        line-height: 1.76 !important;
    }

    .lpa-single .lpa-single__content h2 {
        margin-top: 1.85em !important;
        font-size: 27px !important;
    }

    .lpa-single .lpa-single__content h3 {
        font-size: 22px !important;
    }

    .lpa-single .lpa-single__content blockquote {
        padding: 20px !important;
        font-size: 17px !important;
    }

    .lpa-single .lpa-share {
        justify-content: flex-start !important;
    }

    .lpa-single .lpa-share a,
    .lpa-single .lpa-share button {
        width: 40px;
        height: 40px;
    }

    .lpa-single .lpa-author-box {
        align-items: flex-start !important;
        gap: 14px !important;
        padding: 19px !important;
    }

    .lpa-single .lpa-author-box img {
        width: 56px !important;
        height: 56px !important;
        flex: 0 0 56px;
    }

    .lpa-single .lpa-related {
        margin-top: 62px !important;
        padding-top: 40px !important;
    }
}

@media (max-width: 420px) {
    .lpa-single .lpa-single__container {
        width: min(100% - 20px, 1100px) !important;
    }

    .lpa-single .lpa-single__hero h1 {
        font-size: clamp(29px, 8.8vw, 35px) !important;
    }

    .lpa-single .lpa-chip {
        min-height: 26px;
        padding: 4px 9px;
        font-size: 10px;
    }

    .lpa-single .lpa-single__meta > span:not(.lpa-author-line) {
        font-size: 12px;
    }
}
