/* =========================================================
   MOI-DL BLOGS
   Shared BBC-inspired editorial design
========================================================= */

.moi-blog-site {
    --blog-black: #111111;
    --blog-dark: #1c1c1c;
    --blog-red: #b80000;
    --blog-red-dark: #8f0000;
    --blog-white: #ffffff;
    --blog-soft: #f6f6f6;
    --blog-warm: #fff9f2;
    --blog-border: #d9d9d9;
    --blog-muted: #686868;
    --blog-gold: #c8963e;
    --blog-green: #198754;

    width: 100%;
    min-height: 75vh;
    padding-bottom: 64px;
    background:
        radial-gradient(
            circle at 8% 10%,
            rgba(184, 0, 0, 0.055),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fffaf5 48%,
            #ffffff 100%
        );
    color: var(--blog-black);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

.moi-blog-site,
.moi-blog-site *,
.moi-blog-site *::before,
.moi-blog-site *::after {
    box-sizing: border-box;
    text-shadow: none !important;
}

.moi-blog-site a {
    color: inherit;
    text-decoration: none;
}

.moi-blog-site a:hover {
    color: var(--blog-red);
}

.moi-blog-nav-space {
    width: 100%;
    height: clamp(24px, 4vw, 46px);
}

.moi-blog-container {
    width: min(1540px, calc(100% - 40px));
    max-width: none !important;
    margin: 0 auto;
}

.moi-blog-container-narrow {
    width: min(1180px, calc(100% - 40px));
    max-width: none !important;
    margin: 0 auto;
}

.moi-blog-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blog-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.moi-blog-kicker::before {
    content: "";
    width: 30px;
    height: 3px;
    flex: 0 0 30px;
    background: var(--blog-gold);
}

.moi-blog-section-title {
    margin: 0 0 20px;
    padding-top: 12px;
    border-top: 3px solid var(--blog-black);
    color: var(--blog-black);
    font-size: clamp(23px, 2.6vw, 32px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.035em;
}

/* Hero */

.moi-blog-hero {
    margin-bottom: 28px;
    padding: clamp(40px, 7vw, 78px) 0 clamp(34px, 5vw, 54px);
    color: #ffffff;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96),
            rgba(0, 0, 0, 0.70)
        ),
        url("../img/bg-img/breadcumb2.jpg");
    background-size: cover;
    background-position: center;
}

.moi-blog-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 30px;
    align-items: end;
}

.moi-blog-hero h1 {
    max-width: 920px;
    margin: 12px 0 16px;
    color: #ffffff;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.moi-blog-hero-copy {
    max-width: 820px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.65;
}

.moi-blog-hero-panel {
    min-width: 0;
    padding: 19px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(6px);
}

.moi-blog-hero-panel h2 {
    margin: 0 0 9px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.moi-blog-hero-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.73);
    font-size: 13px;
    line-height: 1.6;
}

.moi-blog-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

/* Buttons */

.moi-blog-btn {
    min-height: 44px;
    padding: 10px 16px;
    border: 2px solid var(--blog-red);
    border-radius: 0;
    background: var(--blog-red);
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-decoration: none !important;
    cursor: pointer;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.moi-blog-btn:hover {
    background: var(--blog-red-dark);
    border-color: var(--blog-red-dark);
    color: #ffffff !important;
    transform: translateY(-1px);
}

.moi-blog-btn-dark {
    background: var(--blog-black);
    border-color: var(--blog-black);
}

.moi-blog-btn-dark:hover {
    background: #333333;
    border-color: #333333;
}

.moi-blog-btn-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff !important;
}

.moi-blog-btn-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--blog-black) !important;
}

.moi-blog-btn-outline {
    background: #ffffff;
    border-color: var(--blog-border);
    color: var(--blog-black) !important;
}

.moi-blog-btn-outline:hover {
    background: var(--blog-black);
    border-color: var(--blog-black);
    color: #ffffff !important;
}

.moi-blog-btn-danger {
    background: var(--blog-red);
    border-color: var(--blog-red);
}

/* Blog list layout */

.moi-blog-list-layout {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.moi-blog-sidebar,
.moi-blog-main {
    min-width: 0;
}

.moi-blog-panel {
    min-width: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--blog-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.065);
}

@media (min-width: 1051px) {
    .moi-blog-panel-sticky {
        position: sticky;
        top: 88px;
    }
}

.moi-blog-sidebar-heading {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 13px;
    color: var(--blog-black);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.moi-blog-sidebar-heading i {
    color: var(--blog-red);
}

.moi-blog-sidebar-copy {
    margin: 0 0 18px;
    color: #4c4c4c;
    font-size: 13px;
    line-height: 1.65;
}

.moi-blog-user-box {
    margin-bottom: 18px;
    padding: 14px;
    background: var(--blog-warm);
    border-left: 4px solid var(--blog-gold);
    color: #514326;
    font-size: 13px;
}

.moi-blog-nav-list {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.moi-blog-nav-link {
    width: 100%;
    padding: 11px 12px;
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--blog-black) !important;
    background: #ffffff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
}

.moi-blog-nav-link:hover,
.moi-blog-nav-link.active {
    border-left-color: var(--blog-red);
    background: var(--blog-black);
    color: #ffffff !important;
}

.moi-blog-nav-link i {
    width: 18px;
    text-align: center;
}

/* Search and toolbar */

.moi-blog-toolbar {
    margin-bottom: 24px;
    padding: 17px;
    background: #ffffff;
    border: 1px solid var(--blog-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.055);
}

.moi-blog-toolbar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.moi-blog-toolbar h2 {
    margin: 0;
    color: var(--blog-black);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.moi-blog-result-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    background: var(--blog-black);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.moi-blog-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.moi-blog-search-box {
    position: relative;
    min-width: 0;
}

.moi-blog-search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blog-muted);
}

.moi-blog-search-input {
    width: 100% !important;
    min-height: 52px !important;
    padding: 10px 14px 10px 44px !important;
    border: 1px solid var(--blog-border) !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: var(--blog-black) !important;
    font-weight: 700;
    box-shadow: none !important;
}

.moi-blog-search-input:focus {
    border-color: var(--blog-black) !important;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08) !important;
}

/* Cards */

.moi-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.moi-blog-card {
    min-width: 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--blog-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.075);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.moi-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 19px 39px rgba(0, 0, 0, 0.12);
}

.moi-blog-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #dedede;
}

.moi-blog-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.moi-blog-card:hover .moi-blog-card-image img {
    transform: scale(1.035);
}

.moi-blog-card-label {
    position: absolute;
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 6px 9px;
    background: var(--blog-red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.moi-blog-card-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 9px;
    background: var(--blog-gold);
    color: #111111;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.moi-blog-card-body {
    min-width: 0;
    padding: 18px;
}

.moi-blog-card h3 {
    margin: 0 0 10px;
    color: var(--blog-black);
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.14;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.moi-blog-card h3 a {
    display: block;
}

.moi-blog-card-excerpt {
    margin: 0 0 14px;
    color: #454545;
    font-size: 14px;
    line-height: 1.65;
}

.moi-blog-card-meta {
    display: grid;
    gap: 5px;
    color: var(--blog-muted);
    font-size: 11px;
    line-height: 1.5;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.moi-blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 13px;
    border-top: 1px solid var(--blog-border);
}

/* Pagination */

.moi-blog-pagination {
    margin-top: 36px;
    text-align: center;
}

.moi-blog-pagination-list {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.moi-blog-page-link,
.moi-blog-page-status {
    min-width: 40px;
    min-height: 40px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--blog-border);
    color: var(--blog-black) !important;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none !important;
}

.moi-blog-page-link:hover {
    background: var(--blog-black);
    border-color: var(--blog-black);
    color: #ffffff !important;
}

.moi-blog-page-status {
    background: var(--blog-soft);
    color: var(--blog-muted) !important;
}

/* Empty result */

.moi-blog-empty {
    padding: 42px 24px;
    background: #ffffff;
    border: 1px dashed var(--blog-border);
    text-align: center;
    color: var(--blog-muted);
}

.moi-blog-empty i {
    display: block;
    margin-bottom: 12px;
    color: var(--blog-red);
    font-size: 38px;
}

.moi-blog-empty h3 {
    margin: 0 0 8px;
    color: var(--blog-black);
    font-size: 23px;
    font-weight: 900;
}

/* Article detail */

.moi-blog-article-hero {
    position: relative;
    min-height: 500px;
    margin-bottom: 30px;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: #ffffff;
    background-size: cover;
    background-position: center;
}

.moi-blog-article-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.94),
            rgba(0, 0, 0, 0.12)
        );
}

.moi-blog-article-hero-content {
    position: relative;
    width: 100%;
    padding: 55px 0;
}

.moi-blog-article-label {
    display: inline-flex;
    padding: 7px 10px;
    background: var(--blog-red);
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.moi-blog-article-hero h1 {
    max-width: 1050px;
    margin: 14px 0;
    color: #ffffff;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.moi-blog-article-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.moi-blog-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
    gap: 28px;
    align-items: start;
}

.moi-blog-article-panel {
    min-width: 0;
    padding: clamp(20px, 3vw, 36px);
    background: #ffffff;
    border: 1px solid var(--blog-border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.moi-blog-article-body {
    color: #252525;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.85;
}

.moi-blog-article-body p {
    margin: 0 0 1.25em;
}

.moi-blog-article-body h1,
.moi-blog-article-body h2,
.moi-blog-article-body h3,
.moi-blog-article-body h4 {
    color: var(--blog-black);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.2;
    font-weight: 900;
}

.moi-blog-article-body img,
.moi-blog-article-body video,
.moi-blog-article-body iframe {
    max-width: 100% !important;
    height: auto;
}

.moi-blog-article-body table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
}

.moi-blog-article-sidebar-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.moi-blog-article-sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--blog-border);
    color: #333333;
    font-size: 14px;
}

.moi-blog-article-sidebar-list strong {
    display: block;
    margin-bottom: 4px;
    color: var(--blog-muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.moi-blog-owner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

/* Comments */

.moi-blog-comments {
    margin-top: 28px;
}

.moi-blog-comment-list {
    display: grid;
    gap: 13px;
}

.moi-blog-comment {
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--blog-border);
    border-left: 4px solid var(--blog-red);
}

.moi-blog-comment-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 9px;
}

.moi-blog-comment-user {
    color: var(--blog-black);
    font-size: 14px;
    font-weight: 900;
}

.moi-blog-comment-date {
    color: var(--blog-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.moi-blog-comment-text {
    color: #333333;
    font-size: 14px;
    line-height: 1.7;
}

.moi-blog-comment-status {
    display: inline-flex;
    margin-top: 8px;
    padding: 4px 7px;
    background: #fff5d9;
    color: #72540c;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.moi-blog-comment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.moi-blog-comment-form {
    margin-top: 20px;
    padding: 18px;
    background: var(--blog-soft);
    border: 1px solid var(--blog-border);
}

.moi-blog-comment-input {
    width: 100%;
    min-height: 120px;
    padding: 13px;
    border: 1px solid var(--blog-border);
    border-radius: 0;
    background: #ffffff;
    color: var(--blog-black);
    resize: vertical;
    box-shadow: none;
}

.moi-blog-comment-input:focus {
    border-color: var(--blog-black);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
    outline: none;
}

/* Form page */

.moi-blog-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.45fr);
    gap: 28px;
    align-items: start;
}

.moi-blog-form-panel {
    min-width: 0;
    padding: clamp(22px, 4vw, 42px);
    background: #ffffff;
    border: 1px solid var(--blog-border);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.moi-blog-form-panel form > p {
    margin-bottom: 20px;
}

.moi-blog-form-panel label {
    display: block;
    margin-bottom: 7px;
    color: var(--blog-black);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.moi-blog-form-panel input[type="text"],
.moi-blog-form-panel input[type="file"],
.moi-blog-form-panel select,
.moi-blog-form-panel textarea,
.moi-blog-form-panel .form-control {
    width: 100% !important;
    min-height: 52px;
    padding: 11px 13px;
    border: 1px solid var(--blog-border) !important;
    border-radius: 0 !important;
    background: #ffffff !important;
    color: var(--blog-black) !important;
    box-shadow: none !important;
}

.moi-blog-form-panel textarea {
    min-height: 360px;
    line-height: 1.7;
    resize: vertical;
}

.moi-blog-form-panel input:focus,
.moi-blog-form-panel select:focus,
.moi-blog-form-panel textarea:focus {
    border-color: var(--blog-black) !important;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08) !important;
    outline: none;
}

.moi-blog-form-panel .errorlist {
    margin: 6px 0;
    padding-left: 18px;
    color: var(--blog-red);
    font-size: 12px;
    font-weight: 800;
}

.moi-blog-tip-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.moi-blog-tip {
    padding: 14px;
    background: var(--blog-warm);
    border-left: 4px solid var(--blog-gold);
    color: #514326;
    font-size: 13px;
    line-height: 1.6;
}

.moi-blog-tip strong {
    display: block;
    margin-bottom: 5px;
    color: var(--blog-black);
}

/* Draft page */

.moi-blog-draft-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.moi-blog-draft-card {
    min-width: 0;
    padding: 19px;
    background: #ffffff;
    border: 1px solid var(--blog-border);
    border-top: 4px solid var(--blog-gold);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}

.moi-blog-draft-card h2 {
    margin: 8px 0 10px;
    color: var(--blog-black);
    font-size: 23px;
    line-height: 1.16;
    font-weight: 900;
}

.moi-blog-draft-date {
    color: var(--blog-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.moi-blog-draft-excerpt {
    color: #444444;
    font-size: 14px;
    line-height: 1.65;
}

/* Confirm and unauthorized */

.moi-blog-state-page {
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.moi-blog-state-card {
    width: min(760px, 100%);
    padding: clamp(28px, 5vw, 52px);
    background: #ffffff;
    border: 1px solid var(--blog-border);
    border-top: 6px solid var(--blog-red);
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.11);
    text-align: center;
}

.moi-blog-state-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff0f0;
    color: var(--blog-red);
    font-size: 28px;
}

.moi-blog-state-card h1 {
    margin: 0 0 13px;
    color: var(--blog-black);
    font-size: clamp(29px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.moi-blog-state-card p {
    margin: 0 auto 22px;
    max-width: 620px;
    color: var(--blog-muted);
    font-size: 15px;
    line-height: 1.65;
}

.moi-blog-state-actions {
    display: flex;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
}

/* Defensive wrapping */

.moi-blog-site h1,
.moi-blog-site h2,
.moi-blog-site h3,
.moi-blog-site h4,
.moi-blog-site p,
.moi-blog-site a,
.moi-blog-site span,
.moi-blog-site div {
    max-width: 100%;
}

.moi-blog-site h1,
.moi-blog-site h2,
.moi-blog-site h3,
.moi-blog-site h4,
.moi-blog-site p,
.moi-blog-site a,
.moi-blog-site span {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
}

.moi-blog-list-layout > *,
.moi-blog-hero-grid > *,
.moi-blog-grid > *,
.moi-blog-article-layout > *,
.moi-blog-form-layout > *,
.moi-blog-draft-grid > * {
    min-width: 0 !important;
}

/* Responsive */

@media screen and (max-width: 1050px) {
    .moi-blog-hero-grid,
    .moi-blog-list-layout,
    .moi-blog-article-layout,
    .moi-blog-form-layout {
        grid-template-columns: 1fr;
    }

    .moi-blog-grid,
    .moi-blog-draft-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 760px) {
    .moi-blog-container,
    .moi-blog-container-narrow {
        width: min(100% - 22px, 1540px);
    }

    .moi-blog-grid,
    .moi-blog-draft-grid {
        grid-template-columns: 1fr;
    }

    .moi-blog-search-form {
        grid-template-columns: 1fr;
    }

    .moi-blog-search-form .moi-blog-btn {
        width: 100%;
    }

    .moi-blog-hero h1,
    .moi-blog-article-hero h1 {
        font-size: clamp(32px, 12vw, 52px);
    }

    .moi-blog-article-hero {
        min-height: 430px;
    }

    .moi-blog-hero-actions,
    .moi-blog-owner-actions,
    .moi-blog-state-actions {
        flex-direction: column;
    }

    .moi-blog-hero-actions .moi-blog-btn,
    .moi-blog-owner-actions .moi-blog-btn,
    .moi-blog-state-actions .moi-blog-btn {
        width: 100%;
    }
}