
:root {
    --mk-accent: #bf1932;
    --mk-accent-dark: #8f1426;
    --mk-green: #0f6b4f;
    --mk-text: #1f1d1a;
    --mk-muted: rgba(31, 29, 26, .68);
    --mk-border: rgba(31, 29, 26, .12);
    --mk-bg: #fff;
    --mk-soft: #f8f5ef;
}

.mk-navigation.gh-navigation {
    height: 74px;
    border-bottom: 1px solid var(--mk-border);
    background: var(--mk-bg);
    color: var(--mk-text);
    font-size: 16px;
    font-weight: 500;
}

.mk-navigation .gh-navigation-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 26px;
    align-items: center;
    height: 100%;
}

.mk-navigation .gh-navigation-brand {
    display: flex;
    align-items: center;
    min-width: 0;
}

.mk-navigation .gh-navigation-logo {
    color: var(--mk-text);
    font-size: 24px;
    font-weight: 760;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.mk-navigation .gh-navigation-menu {
    min-width: 0;
    justify-content: center;
}

.mk-navigation .nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.mk-navigation .nav > li {
    display: flex;
    align-items: center;
}

.mk-navigation .nav > li > a {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 0;
    border-radius: 999px;
    color: var(--mk-text);
    line-height: 1.5;
    text-decoration: none;
    transition: color .16s ease, background-color .16s ease, padding .16s ease;
}

.mk-navigation .nav > li > a:hover {
    color: var(--mk-accent);
    opacity: 1;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
}

.mk-navigation .nav > li.nav-current > a,
.mk-navigation .nav > li > a[aria-current="page"] {
    padding: 7px 14px;
    background: rgba(191, 25, 50, .08);
    color: var(--mk-accent);
    text-decoration: none;
}

.mk-navigation .nav > li.nav-current > a:hover,
.mk-navigation .nav > li > a[aria-current="page"]:hover {
    background: rgba(191, 25, 50, .12);
    color: var(--mk-accent-dark);
    text-decoration: none;
}

.mk-navigation .gh-navigation-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    background: transparent;
}

.mk-navigation .gh-search,
.mk-navigation .gh-icon-button {
    color: var(--mk-text);
}

.mk-navigation .gh-icon-button:hover {
    color: var(--mk-accent);
    opacity: 1;
}

.mk-navigation .gh-burger {
    display: none;
    border-radius: 50%;
}

.mk-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.mk-section-card {
    display: block;
    min-height: 150px;
    padding: 22px;
    border: 1px solid var(--mk-border);
    border-radius: 8px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.mk-section-card:hover {
    border-color: rgba(191, 25, 50, .32);
    box-shadow: 0 10px 24px rgba(31, 29, 26, .08);
    transform: translateY(-1px);
    opacity: 1;
}

.mk-section-card h2 {
    margin: 0 0 8px;
    color: var(--mk-text);
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -.01em;
}

.mk-section-card p {
    margin: 0;
    color: var(--mk-muted);
    line-height: 1.55;
}

@media (max-width: 1080px) and (min-width: 981px) {
    .mk-navigation .nav {
        gap: 18px;
        font-size: 15px;
    }
}

@media (max-width: 980px) {
    .mk-navigation.gh-navigation {
        height: 64px;
    }

    .mk-navigation .gh-navigation-inner {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 64px auto;
        gap: 0;
    }

    .mk-navigation .gh-navigation-brand {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        height: 64px;
    }

    .mk-navigation .gh-navigation-logo {
        max-width: calc(100vw - 108px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 22px;
    }

    .mk-navigation .gh-burger {
        display: flex;
        margin-right: -7px;
    }

    .mk-navigation .gh-navigation-actions {
        display: none;
    }

    .mk-navigation .gh-navigation-menu {
        display: none;
    }

    .mk-navigation.is-open {
        position: fixed;
        inset: 0;
        z-index: 3999999;
        height: 100%;
        overflow-y: auto;
        background: #fff;
    }

    .mk-navigation.is-open .gh-navigation-menu {
        display: block;
        width: 100%;
        padding: 18px 0 28px;
        opacity: 1;
        visibility: visible;
        position: static;
    }

    .mk-navigation.is-open .nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        width: 100%;
        border-top: 1px solid var(--mk-border);
        border-bottom: 1px solid var(--mk-border);
    }

    .mk-navigation.is-open .nav > li {
        width: 100%;
    }

    .mk-navigation.is-open .nav > li + li {
        border-top: 1px solid var(--mk-border);
    }

    .mk-navigation.is-open .nav > li > a {
        justify-content: space-between;
        width: 100%;
        min-height: 52px;
        padding: 14px 4px;
        border-radius: 0;
        background: transparent;
        color: var(--mk-text);
        font-size: 18px;
        font-weight: 500;
    }

    .mk-navigation.is-open .nav > li.nav-current > a,
    .mk-navigation.is-open .nav > li > a[aria-current="page"] {
        min-height: 40px;
        margin-block: 7px;
        padding-inline: 12px;
        border-radius: 999px;
        background: rgba(191, 25, 50, .08);
        color: var(--mk-accent);
    }

    .mk-navigation.is-open .nav > li > a:hover {
        color: var(--mk-accent);
        text-decoration: none;
    }

    .mk-navigation.is-open .nav > li.nav-current > a:hover,
    .mk-navigation.is-open .nav > li > a[aria-current="page"]:hover {
        background: rgba(191, 25, 50, .12);
        color: var(--mk-accent-dark);
    }

    .is-open#gh-main {
        opacity: 0;
    }
}

/* Visibility guard: Source hides desktop nav items until its dropdown script marks
   the header as loaded. This custom theme disables that script to avoid the "..."
   menu, so the menu items must be explicitly visible. */
@media (min-width: 981px) {
    .mk-navigation.gh-navigation,
    .mk-navigation.gh-navigation :is(.gh-navigation-logo, a:not(.gh-button), .gh-icon-button) {
        color: #1f2937 !important;
    }

    .mk-navigation.gh-navigation .gh-navigation-menu {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .mk-navigation.gh-navigation .gh-navigation-menu .nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        overflow: visible !important;
        width: auto !important;
    }

    .mk-navigation.gh-navigation .gh-navigation-menu .nav > li {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: auto !important;
        transform: none !important;
    }

    .mk-navigation.gh-navigation .gh-navigation-menu .nav > li > a {
        color: #1f2937 !important;
        visibility: visible !important;
        opacity: 1 !important;
        white-space: nowrap !important;
    }

    .mk-navigation.gh-navigation .gh-navigation-menu .nav > li.nav-current > a,
    .mk-navigation.gh-navigation .gh-navigation-menu .nav > li > a[aria-current="page"] {
        background: rgba(191, 25, 50, .08) !important;
        color: #bf1932 !important;
    }
}

/* Marokko Kompass requested color system */
:root {
    --mk-red: #B91C1C;
    --mk-red-dark: #8F1D1D;
    --mk-green: #006233;
    --mk-header-text: #111827;
    --mk-active-bg: #FEE2E2;
}

.mk-navigation.gh-navigation {
    background: #ffffff !important;
    color: var(--mk-header-text) !important;
    border-bottom: 1px solid rgba(17, 24, 39, .10);
}

.mk-navigation.gh-navigation .gh-navigation-logo,
.mk-navigation.gh-navigation .gh-navigation-logo:link,
.mk-navigation.gh-navigation .gh-navigation-logo:visited {
    color: var(--mk-red) !important;
}

.mk-navigation.gh-navigation .gh-navigation-menu .nav > li > a {
    color: var(--mk-header-text) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mk-navigation.gh-navigation .gh-navigation-menu .nav > li.nav-current > a,
.mk-navigation.gh-navigation .gh-navigation-menu .nav > li > a[aria-current="page"] {
    background: var(--mk-active-bg) !important;
    color: var(--mk-red) !important;
    border-bottom: 3px solid var(--mk-green) !important;
    box-shadow: none !important;
}

.mk-navigation.gh-navigation .gh-navigation-menu .nav > li > a:hover {
    color: var(--mk-red) !important;
    text-decoration-color: var(--mk-green);
}

.mk-navigation.gh-navigation .gh-navigation-actions,
.mk-navigation.gh-navigation .gh-search,
.mk-navigation.gh-navigation .gh-icon-button {
    color: var(--mk-header-text) !important;
}

.home-template .gh-header,
.home-template .gh-header.is-classic,
.home-template .gh-header.is-highlight,
.home-template .gh-header.is-magazine,
.home-template .gh-header.is-landing,
.gh-header.is-classic.has-image,
.gh-header.is-highlight.has-image,
.gh-header.is-magazine.has-image {
    background: linear-gradient(135deg, #8F1D1D 0%, #B91C1C 45%, #006233 100%) !important;
    color: #ffffff !important;
}

.home-template .gh-header :is(h1, h2, h3, p, a, .gh-card-title, .gh-card-excerpt, .gh-card-meta, .gh-card-tag),
.gh-header.is-classic.has-image :is(h1, h2, h3, p, a, .gh-card-title, .gh-card-excerpt, .gh-card-meta, .gh-card-tag),
.gh-header.is-highlight.has-image :is(h1, h2, h3, p, a, .gh-card-title, .gh-card-excerpt, .gh-card-meta, .gh-card-tag),
.gh-header.is-magazine.has-image :is(h1, h2, h3, p, a, .gh-card-title, .gh-card-excerpt, .gh-card-meta, .gh-card-tag) {
    color: #ffffff !important;
}

.gh-button,
.kg-btn,
.kg-button-card .kg-btn,
.gh-form .gh-button,
button.gh-button,
a.gh-button {
    background: var(--mk-green) !important;
    color: #ffffff !important;
    border-color: var(--mk-green) !important;
}

.gh-button:hover,
.kg-btn:hover,
.kg-button-card .kg-btn:hover,
.gh-form .gh-button:hover,
button.gh-button:hover,
a.gh-button:hover {
    background: var(--mk-red) !important;
    color: #ffffff !important;
    border-color: var(--mk-red) !important;
    opacity: 1 !important;
}

.gh-form,
.gh-footer-signup .gh-form,
.gh-content .gh-form {
    background: #ffffff !important;
    border: 1px solid rgba(17, 24, 39, .14) !important;
}

.gh-form:focus-within {
    border-color: var(--mk-red) !important;
    box-shadow: 0 0 0 3px rgba(185, 28, 28, .14) !important;
}

.gh-form-input,
.gh-form input,
.gh-form button.gh-form-input {
    background: #ffffff !important;
    color: var(--mk-header-text) !important;
}

@media (max-width: 980px) {
    .mk-navigation.is-open .nav > li.nav-current > a,
    .mk-navigation.is-open .nav > li > a[aria-current="page"] {
        background: var(--mk-active-bg) !important;
        color: var(--mk-red) !important;
        border-bottom: 3px solid var(--mk-green) !important;
    }
}
/* /Marokko Kompass requested color system */

/* Marokko Kompass hero typography */
.home-template .gh-header,
.page-startseite .gh-article,
.page-startseite .gh-content > section:first-child {
    color: #ffffff;
}

.home-template .gh-header-title,
.page-startseite .gh-content h1:first-child {
    max-width: 980px;
    color: #ffffff !important;
    font-size: clamp(3.8rem, 5vw, 7.2rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.home-template .gh-header-description,
.home-template .gh-header-excerpt,
.page-startseite .gh-content h1:first-child + p {
    max-width: 860px;
    margin-top: 22px;
    margin-bottom: 44px;
    color: rgba(255, 255, 255, .92) !important;
    font-size: clamp(1.8rem, 1.6vw, 2.4rem);
    line-height: 1.45;
    font-weight: 450;
}

.home-template .gh-header .gh-form,
.page-startseite .gh-content h1:first-child + p + .gh-form,
.page-startseite .gh-content .gh-form {
    margin-top: 34px;
}

@media (max-width: 767px) {
    .home-template .gh-header-title,
    .page-startseite .gh-content h1:first-child {
        font-size: clamp(3.3rem, 11vw, 4.8rem);
        line-height: 1.06;
    }

    .home-template .gh-header-description,
    .home-template .gh-header-excerpt,
    .page-startseite .gh-content h1:first-child + p {
        margin-top: 18px;
        margin-bottom: 34px;
        font-size: 1.8rem;
        line-height: 1.5;
    }
}
/* /Marokko Kompass hero typography */

/* Marokko Kompass home categories */
.mk-home-categories {
    margin-top: 24px;
    margin-bottom: 22px;
}

.mk-home-categories-inner {
    padding-top: 2px;
}

.mk-home-categories-title {
    margin: 0 0 14px;
    color: #111827;
    font-size: 1.9rem;
    line-height: 1.25;
    font-weight: 750;
}

.mk-home-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.mk-home-category-card {
    position: relative;
    display: block;
    min-height: 118px;
    padding: 15px 15px 14px;
    border: 1px solid rgba(17, 24, 39, .08);
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(17, 24, 39, .035);
    overflow: hidden;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.mk-home-category-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 2px;
    background: linear-gradient(90deg, #B91C1C 0%, #006233 100%);
}

.mk-home-category-card:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 98, 51, .18);
    box-shadow: 0 8px 18px rgba(17, 24, 39, .055);
    opacity: 1;
}

.mk-home-category-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: #B91C1C;
    font-size: 1.08rem;
    line-height: 1;
    font-weight: 750;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.mk-home-category-card h3 {
    margin: 0 0 6px;
    color: #111827;
    font-size: 1.75rem;
    line-height: 1.18;
    font-weight: 760;
}

.mk-home-category-card p {
    margin: 0;
    color: rgba(17, 24, 39, .64);
    font-size: 1.35rem;
    line-height: 1.38;
}

.home-template .gh-container {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .mk-home-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mk-home-categories {
        margin-top: 20px;
        margin-bottom: 26px;
    }

    .mk-home-categories-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mk-home-category-card {
        min-height: auto;
        padding: 14px;
    }
}
/* /Marokko Kompass home categories */

/* Marokko Kompass minimal footer */
.gh-footer {
    display: none !important;
}

.mk-footer {
    margin-top: 48px;
    padding-top: 0;
    padding-bottom: 0;
    background: #ffffff;
    color: #111827;
}

.mk-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    border-top: 1px solid rgba(17, 24, 39, .10);
    font-size: 1.4rem;
}

.mk-footer-copyright {
    color: rgba(17, 24, 39, .72);
    font-weight: 550;
}

.mk-footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.mk-footer-links a {
    color: rgba(17, 24, 39, .72);
    text-decoration: none;
}

.mk-footer-links a:hover {
    color: #B91C1C;
    opacity: 1;
}

.gh-footer-signup,
.gh-footer-logo,
.gh-footer-menu,
.gh-footer-copyright,
.gh-footer-signup-header,
.gh-footer-signup-subhead {
    display: none !important;
}

@media (max-width: 640px) {
    .mk-footer {
        margin-top: 36px;
    }

    .mk-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        min-height: 82px;
        padding-block: 16px;
    }
}
/* /Marokko Kompass minimal footer */

/* Marokko Kompass contact form */
.mk-contact-page {
    max-width: 860px;
    margin: 0 auto;
    color: #111827;
}

.mk-contact-hero {
    max-width: 820px;
    margin: 0 auto 24px;
    padding: 0 4px;
    text-align: center;
}

.mk-contact-hero::after {
    content: none;
}

.mk-contact-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 11px;
    border: 1px solid rgba(0, 98, 51, .16);
    border-radius: 999px;
    background: #F9FAFB;
    color: #006233;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.mk-contact-hero h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(3rem, 4vw, 4.4rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.mk-contact-hero p {
    max-width: 700px;
    margin: 12px auto 0;
    color: rgba(17, 24, 39, .72);
    font-size: clamp(1.6rem, 1.7vw, 1.85rem);
    line-height: 1.55;
}

.mk-contact-layout {
    display: block;
}

.mk-contact-form {
    position: relative;
    display: grid;
    gap: 20px;
    overflow: hidden;
    max-width: 820px;
    margin: 0 auto;
    padding: 32px;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(17, 24, 39, .08);
}

.mk-contact-form-bar {
    height: 5px;
    margin: -32px -32px 8px;
    background: linear-gradient(90deg, #B91C1C 0%, #8F1D1D 45%, #006233 100%);
}

.mk-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mk-contact-form label {
    display: grid;
    gap: 8px;
    color: #111827;
    font-size: 1.42rem;
    font-weight: 750;
}

.mk-contact-form input,
.mk-contact-form select,
.mk-contact-form textarea {
    width: 100%;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    background: #ffffff;
    color: #111827;
    font: inherit;
    font-size: 1.58rem;
    line-height: 1.35;
    padding: 12px 14px;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.mk-contact-form input,
.mk-contact-form select {
    min-height: 48px;
}

.mk-contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.mk-contact-form input:focus,
.mk-contact-form select:focus,
.mk-contact-form textarea:focus {
    border-color: #B91C1C;
    box-shadow: 0 0 0 4px rgba(0, 98, 51, .12);
    background-color: #fff;
}

.mk-contact-note {
    margin: 2px 0 0;
    padding: 14px 15px;
    border: 1px solid rgba(0, 98, 51, .16);
    border-left: 4px solid #006233;
    border-radius: 12px;
    background: #F9FAFB;
    color: rgba(17, 24, 39, .76);
    font-size: 1.42rem;
    line-height: 1.5;
}

.mk-contact-submit {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    background: #006233;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 850;
    padding: 14px 24px;
    transition: background-color .16s ease, transform .16s ease, box-shadow .16s ease;
    box-shadow: 0 10px 22px rgba(0, 98, 51, .16);
}

.mk-contact-submit:hover,
.mk-contact-submit:focus {
    background: #B91C1C;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(185, 28, 28, .16);
}

.mk-contact-message {
    margin: 0;
    padding: 13px 15px;
    border: 1px solid rgba(0, 98, 51, .18);
    border-radius: 12px;
    background: rgba(0, 98, 51, .08);
    color: #004225;
    font-weight: 750;
}

.mk-contact-info,
.mk-contact-callout {
    display: none;
}

@media (max-width: 700px) {
    .mk-contact-page {
        max-width: 100%;
    }

    .mk-contact-hero {
        margin-bottom: 20px;
        text-align: left;
    }

    .mk-contact-form {
        gap: 18px;
        padding: 22px;
        border-radius: 14px;
    }

    .mk-contact-form-bar {
        margin: -22px -22px 4px;
    }

    .mk-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mk-contact-submit {
        width: 100%;
    }
}
/* /Marokko Kompass contact form */

/* Marokko Kompass share buttons */
.mk-share {
    display: grid;
    gap: 10px;
    margin: 28px 0;
    color: #111827;
}

.gh-article-header .mk-share {
    margin: 18px 0 4px;
}

.mk-share-label {
    color: rgba(17, 24, 39, .62);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.mk-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.mk-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(0, 98, 51, .18);
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    cursor: pointer;
    font: inherit;
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.mk-share-button span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: #FEE2E2;
    color: #B91C1C;
    font-size: 1.1rem;
    font-weight: 900;
}

.mk-share-button:hover,
.mk-share-button:focus {
    border-color: #B91C1C;
    background: #B91C1C;
    color: #ffffff;
    opacity: 1;
    transform: translateY(-1px);
}

.mk-share-button:hover span:first-child,
.mk-share-button:focus span:first-child {
    background: rgba(255, 255, 255, .18);
    color: #ffffff;
}

.mk-share-whatsapp:hover,
.mk-share-telegram:hover,
.mk-share-copy:hover,
.mk-share-whatsapp:focus,
.mk-share-telegram:focus,
.mk-share-copy:focus {
    border-color: #006233;
    background: #006233;
}

.mk-share-copy.is-copied {
    border-color: #006233;
    background: #006233;
    color: #ffffff;
}

.mk-share-copy.is-copied span:first-child {
    background: rgba(255, 255, 255, .18);
    color: #ffffff;
}

@media (max-width: 640px) {
    .mk-share {
        margin: 24px 0;
    }

    .mk-share-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .mk-share-button {
        min-height: 44px;
        padding: 9px 10px;
        font-size: 1.32rem;
    }
}
/* /Marokko Kompass share buttons */

/* Marokko Kompass related posts */
.post-template .gh-container.is-grid {
    margin-top: 64px;
    padding-bottom: 20px;
}

.post-template .gh-container-inner {
    max-width: 1120px;
    margin-inline: auto;
}

.post-template .gh-container .gh-container-title {
    margin-bottom: 22px;
    color: #111827;
    font-size: clamp(2.4rem, 3vw, 3.2rem);
    line-height: 1.15;
    text-align: center;
}

.post-template .gh-container.is-grid .gh-feed {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.post-template .gh-container.is-grid .gh-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .07);
}

.post-template .gh-container.is-grid .gh-card-link {
    height: 100%;
    gap: 0;
}

.post-template .gh-container.is-grid .gh-card-image {
    aspect-ratio: 16 / 10;
}

.post-template .gh-container.is-grid .gh-card-wrapper {
    padding: 18px;
}

.post-template .gh-container.is-grid .gh-card-title {
    font-size: 1.85rem;
}

.post-template .gh-container.is-grid .gh-card-excerpt {
    -webkit-line-clamp: 3;
}

@media (max-width: 900px) {
    .post-template .gh-container.is-grid .gh-feed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .post-template .gh-container.is-grid {
        margin-top: 48px;
    }

    .post-template .gh-container.is-grid .gh-feed {
        grid-template-columns: 1fr;
    }

    .post-template .gh-container .gh-container-title {
        text-align: left;
    }
}
/* /Marokko Kompass related posts */

/* Marokko Kompass article enhancements */
.mk-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.mk-post-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border: 1px solid rgba(0, 98, 51, .16);
    border-radius: 999px;
    background: #F9FAFB;
    color: #006233;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
}

.mk-post-tag:first-child {
    border-color: rgba(185, 28, 28, .18);
    background: #FEE2E2;
    color: #B91C1C;
}

.mk-post-tag:hover {
    background: #006233;
    border-color: #006233;
    color: #ffffff;
    opacity: 1;
}

.mk-article-newsletter,
.mk-community-tip {
    margin-top: 34px;
}

.mk-article-newsletter-inner,
.mk-community-tip-inner {
    grid-column: main;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid #E5E7EB;
    border-left: 5px solid #006233;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(185, 28, 28, .05), rgba(0, 98, 51, .06)), #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
}

.mk-article-newsletter-inner {
    grid-template-columns: minmax(0, 1fr);
}

.mk-article-newsletter h2,
.mk-community-tip h2 {
    margin: 0;
    color: #111827;
    font-size: 2.2rem;
    line-height: 1.2;
}

.mk-article-newsletter p,
.mk-community-tip p {
    margin: 7px 0 0;
    color: rgba(17, 24, 39, .72);
    line-height: 1.5;
}

.mk-article-newsletter .gh-form {
    max-width: 100%;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #E5E7EB;
}

.mk-article-newsletter .gh-form .gh-button {
    background: #006233;
    color: #ffffff;
}

.mk-article-newsletter .gh-form .gh-button:hover {
    background: #B91C1C;
}

.mk-community-tip-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    border-left-color: #B91C1C;
}

.mk-community-tip-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #006233;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 850;
    white-space: nowrap;
}

.mk-community-tip-button:hover {
    background: #B91C1C;
    color: #ffffff;
    opacity: 1;
}

.post-template .mk-related-primary {
    margin-top: 64px;
    padding-bottom: 20px;
}

.post-template .mk-related-primary .gh-container-inner {
    max-width: 1120px;
    margin-inline: auto;
}

.post-template .mk-related-primary .gh-container-title {
    margin-bottom: 22px;
    color: #111827;
    font-size: clamp(2.4rem, 3vw, 3.2rem);
    line-height: 1.15;
    text-align: center;
}

.post-template .mk-related-primary .gh-feed {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.post-template .mk-related-primary .gh-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .07);
}

.post-template .mk-related-primary .gh-card-link {
    height: 100%;
    gap: 0;
}

.post-template .mk-related-primary .gh-card-image {
    aspect-ratio: 16 / 10;
}

.post-template .mk-related-primary .gh-card-wrapper {
    padding: 18px;
}

.post-template .mk-related-primary .gh-card-title {
    font-size: 1.85rem;
}

.post-template .mk-related-primary .gh-card-excerpt {
    -webkit-line-clamp: 3;
}

@media (max-width: 900px) {
    .post-template .mk-related-primary .gh-feed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mk-community-tip-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .mk-post-tags {
        margin-bottom: 14px;
    }

    .mk-article-newsletter-inner,
    .mk-community-tip-inner {
        padding: 20px;
    }

    .mk-community-tip-button {
        width: 100%;
    }

    .post-template .mk-related-primary {
        margin-top: 48px;
    }

    .post-template .mk-related-primary .gh-feed {
        grid-template-columns: 1fr;
    }

    .post-template .mk-related-primary .gh-container-title {
        text-align: left;
    }
}
/* /Marokko Kompass article enhancements */

/* Marokko Kompass tag pages */
.mk-tag-page {
    padding-top: 36px;
}

.mk-tag-hero {
    margin-bottom: 28px;
}

.mk-tag-hero-card {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid rgba(229, 231, 235, 1);
    border-left: 5px solid #B91C1C;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(185, 28, 28, .055), rgba(0, 98, 51, .06)), #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
}

.mk-tag-hero-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #B91C1C, #006233);
}

.mk-tag-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #FEE2E2;
    color: #B91C1C;
    font-size: 1.2rem;
    font-weight: 850;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}

.mk-tag-title {
    margin: 0;
    color: #111827;
    font-size: clamp(3.2rem, 5vw, 5.6rem);
    line-height: 1.04;
    letter-spacing: 0;
}

.mk-tag-description {
    max-width: 760px;
    margin: 12px 0 0;
    color: rgba(17, 24, 39, .72);
    font-size: clamp(1.6rem, 1.8vw, 1.9rem);
    line-height: 1.55;
}

.mk-tag-posts {
    margin-bottom: 48px;
}

.mk-tag-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mk-tag-grid .gh-card {
    overflow: hidden;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .07);
}

.mk-tag-grid .gh-card-link {
    height: 100%;
    gap: 0;
}

.mk-tag-grid .gh-card-image {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(185, 28, 28, .12), rgba(0, 98, 51, .14));
}

.mk-tag-grid .gh-card-wrapper {
    padding: 18px;
}

.mk-tag-grid .gh-card-tag {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0, 98, 51, .08);
    color: #006233;
    font-size: 1.12rem;
    font-weight: 850;
}

.mk-tag-grid .gh-card-title {
    color: #111827;
    font-size: 1.95rem;
    line-height: 1.22;
}

.mk-tag-grid .gh-card-excerpt {
    -webkit-line-clamp: 3;
    color: rgba(17, 24, 39, .72);
    font-size: 1.45rem;
    line-height: 1.45;
}

.mk-tag-grid .gh-card-meta {
    margin-top: 12px;
    color: rgba(17, 24, 39, .58);
    font-size: 1.25rem;
}

.mk-tag-pagination {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

@media (max-width: 980px) {
    .mk-tag-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mk-tag-page {
        padding-top: 22px;
    }

    .mk-tag-hero {
        margin-bottom: 22px;
    }

    .mk-tag-hero-card {
        padding: 22px;
        border-radius: 14px;
    }

    .mk-tag-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
/* /Marokko Kompass tag pages */

/* Marokko Kompass card image fallback */
.mk-tag-grid .gh-card:not(:has(.gh-card-image)) .gh-card-link::before,
.mk-related-primary .gh-card:not(:has(.gh-card-image)) .gh-card-link::before {
    content: "Marokko Kompass";
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #8F1D1D 0%, #B91C1C 48%, #006233 100%);
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 850;
    letter-spacing: .02em;
}
/* /Marokko Kompass card image fallback */

/* Marokko Kompass prayer times */
.mk-prayer-page {
    max-width: 980px;
    margin: 0 auto;
    color: #111827;
}

.mk-prayer-hero {
    margin: 0 0 24px;
    padding: clamp(24px, 4vw, 38px);
    border: 1px solid #E5E7EB;
    border-left: 5px solid #B91C1C;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(185, 28, 28, .06), rgba(0, 98, 51, .07)), #ffffff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, .06);
}

.mk-prayer-badge {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #FEE2E2;
    color: #B91C1C;
    font-size: 1.2rem;
    font-weight: 850;
    text-transform: uppercase;
}

.mk-prayer-hero h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(3.2rem, 5vw, 5.4rem);
    line-height: 1.05;
}

.mk-prayer-hero p {
    max-width: 680px;
    margin: 12px 0 0;
    color: rgba(17, 24, 39, .72);
    font-size: 1.8rem;
    line-height: 1.55;
}

.mk-prayer-panel {
    padding: 28px;
    border: 1px solid #E5E7EB;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(17, 24, 39, .08);
}

.mk-prayer-select-label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 800;
}

.mk-prayer-select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    font: inherit;
    font-size: 1.6rem;
    outline: none;
}

.mk-prayer-select:focus {
    border-color: #B91C1C;
    box-shadow: 0 0 0 4px rgba(0, 98, 51, .12);
}

.mk-prayer-status {
    margin-top: 14px;
    color: rgba(17, 24, 39, .62);
    font-size: 1.4rem;
    font-weight: 700;
}

.mk-prayer-status.is-error {
    color: #B91C1C;
}

.mk-prayer-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #F9FAFB;
}

.mk-prayer-summary span {
    color: rgba(17, 24, 39, .64);
}

.mk-prayer-summary strong {
    color: #006233;
}

.mk-prayer-times {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.mk-prayer-time-card {
    padding: 18px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #F9FAFB);
    text-align: center;
}

.mk-prayer-time-card span {
    display: block;
    color: rgba(17, 24, 39, .64);
    font-size: 1.35rem;
    font-weight: 800;
}

.mk-prayer-time-card strong {
    display: block;
    margin-top: 7px;
    color: #006233;
    font-size: 2.4rem;
    line-height: 1;
}

.mk-prayer-note {
    margin: 20px 0 0;
    padding: 14px 16px;
    border-left: 4px solid #006233;
    border-radius: 12px;
    background: #F9FAFB;
    color: rgba(17, 24, 39, .72);
    font-size: 1.45rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .mk-prayer-times {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mk-prayer-panel {
        padding: 22px;
    }

    .mk-prayer-times {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mk-prayer-time-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .mk-prayer-time-card strong {
        margin-top: 0;
        font-size: 2.2rem;
    }
}
/* /Marokko Kompass prayer times */

/* Marokko Kompass service cards */
.mk-tag-grid .mk-service-card .gh-card-image {
    background: #F9FAFB;
}

.mk-tag-grid .mk-service-card .gh-card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.mk-tag-grid .mk-service-card .gh-card-tag {
    background: #FEE2E2;
    color: #B91C1C;
}

.mk-tag-grid .mk-service-card .gh-card-link:hover .gh-card-title {
    color: #B91C1C;
    opacity: 1;
}
/* /Marokko Kompass service cards */



/* Marokko Kompass community card image polish */
.mk-tag-grid .gh-card-image {
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.mk-tag-grid .gh-card-image img {
    transition: transform .22s ease;
}

.mk-tag-grid .gh-card-link:hover .gh-card-image img {
    transform: scale(1.035);
}
/* /Marokko Kompass community card image polish */

/* Marokko Kompass WM ticker */
.mk-tag-grid .mk-wm2026-card-image {
    background: linear-gradient(135deg, #8F1D1D 0%, #B91C1C 44%, #006233 100%);
}

.mk-ticker-posts {
    margin-bottom: 48px;
}

.mk-ticker-list {
    display: grid;
    gap: 14px;
    max-width: 860px;
}

.mk-ticker-item {
    padding: 18px 20px;
    border: 1px solid #E5E7EB;
    border-left: 4px solid #006233;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(17, 24, 39, .055);
}

.mk-ticker-item time {
    display: block;
    margin-bottom: 7px;
    color: rgba(17, 24, 39, .58);
    font-size: 1.24rem;
    font-weight: 800;
}

.mk-ticker-item h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.85rem, 2vw, 2.25rem);
    line-height: 1.22;
}

.mk-ticker-item h2 a {
    color: inherit;
}

.mk-ticker-item p {
    margin: 8px 0 0;
    color: rgba(17, 24, 39, .72);
    line-height: 1.5;
}

.mk-ticker-readmore {
    display: inline-flex;
    margin-top: 12px;
    color: #006233;
    font-size: 1.4rem;
    font-weight: 850;
}

.mk-ticker-readmore:hover {
    color: #B91C1C;
    opacity: 1;
}

@media (max-width: 640px) {
    .mk-ticker-item {
        padding: 16px;
    }
}
/* /Marokko Kompass WM ticker */

/* Marokko Kompass sport page */
.mk-sport-page .mk-tag-hero {
    margin-bottom: 20px;
}

.mk-sport-ticker {
    margin-bottom: 52px;
}

.mk-sport-section-header {
    max-width: 860px;
    margin-bottom: 14px;
    padding: 0 0 14px;
    border-bottom: 1px solid #E5E7EB;
}

.mk-sport-section-header h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(2.25rem, 2.7vw, 3rem);
    line-height: 1.12;
}

.mk-sport-section-header p {
    margin: 7px 0 0;
    color: rgba(17, 24, 39, .72);
    font-size: 1.58rem;
    line-height: 1.5;
}

.mk-ticker-list {
    gap: 12px;
}

.mk-ticker-item {
    padding: 15px 17px;
}

.mk-ticker-item time {
    display: inline-flex;
    margin: 0;
    color: rgba(17, 24, 39, .58);
    font-size: 1.2rem;
    font-weight: 800;
}

.mk-ticker-tag {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 8px 8px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #FEE2E2;
    color: #B91C1C;
    font-size: 1.08rem;
    font-weight: 850;
    vertical-align: middle;
}

.mk-ticker-item h2 {
    margin: 2px 0 0;
    color: #111827;
    font-size: clamp(1.72rem, 1.75vw, 2.05rem);
    line-height: 1.24;
}

.mk-ticker-item h2 a {
    color: inherit;
}

.mk-ticker-item p {
    margin: 7px 0 0;
    color: rgba(17, 24, 39, .72);
    line-height: 1.48;
}

.mk-ticker-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    margin-top: 11px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #006233;
    color: #ffffff;
    font-size: 1.28rem;
    font-weight: 850;
}

.mk-ticker-readmore:hover {
    background: #B91C1C;
    color: #ffffff;
    opacity: 1;
}

@media (max-width: 640px) {
    .mk-sport-page .mk-tag-hero {
        margin-bottom: 18px;
    }

    .mk-sport-ticker {
        margin-bottom: 40px;
    }

    .mk-sport-section-header h2 {
        font-size: 2.35rem;
    }

    .mk-ticker-item {
        padding: 14px;
    }

    .mk-ticker-item h2 {
        font-size: 1.7rem;
        line-height: 1.28;
    }
}
/* /Marokko Kompass sport page */

/* Marokko Kompass clickable ticker */
.mk-ticker-item {
    padding: 0;
}

.mk-ticker-link {
    display: block;
    padding: 15px 17px;
    color: inherit;
}

.mk-ticker-link:hover {
    opacity: 1;
}

.mk-ticker-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 8px;
    align-items: center;
    margin-bottom: 8px;
}

.mk-ticker-meta .mk-ticker-tag {
    margin: 0;
}

.mk-ticker-link:hover h2 {
    color: #B91C1C;
}

.mk-ticker-link:hover .mk-ticker-readmore {
    background: #B91C1C;
}

.mk-ticker-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    margin-top: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #006233;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 850;
}

.mk-ticker-more:hover {
    background: #B91C1C;
    color: #ffffff;
    opacity: 1;
}

@media (max-width: 640px) {
    .mk-ticker-link {
        padding: 14px;
    }

    .mk-ticker-more {
        width: 100%;
    }
}
/* /Marokko Kompass clickable ticker */

/* Marokko Kompass home latest */
.mk-home-latest {
    margin: 20px 0 48px;
}

.mk-home-latest-inner {
    display: grid;
    gap: 14px;
}

.mk-home-latest-header {
    display: block;
    padding-bottom: 12px;
    border-bottom: 1px solid #E5E7EB;
}

.mk-home-latest-header h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(2.25rem, 3vw, 3.1rem);
    line-height: 1.1;
}

.mk-home-latest-header p {
    max-width: 620px;
    margin: 7px 0 0;
    color: rgba(17, 24, 39, .66);
    font-size: 1.55rem;
    line-height: 1.5;
}

.mk-home-latest-list {
    display: grid;
    gap: 0;
    max-width: 900px;
}

.mk-home-news-card {
    border: 0;
    border-bottom: 1px solid #E5E7EB;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.mk-home-news-card.is-ticker {
    border-left: 0;
}

.mk-home-news-link {
    display: grid;
    gap: 7px;
    height: auto;
    padding: 15px 0;
    color: inherit;
}

.mk-home-news-link:hover {
    opacity: 1;
}

.mk-home-news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px 9px;
}

.mk-home-news-tag {
    display: inline-flex;
    width: fit-content;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(0, 98, 51, .08);
    color: #006233;
    font-size: 1.05rem;
    font-weight: 850;
    line-height: 1;
}

.mk-home-news-card.is-ticker .mk-home-news-tag {
    background: #FEE2E2;
    color: #B91C1C;
}

.mk-home-news-meta time {
    color: rgba(17, 24, 39, .55);
    font-size: 1.15rem;
    font-weight: 750;
}

.mk-home-news-card h3 {
    margin: 0;
    color: #111827;
    font-size: clamp(1.78rem, 1.8vw, 2.15rem);
    line-height: 1.24;
}

.mk-home-news-link:hover h3 {
    color: #B91C1C;
}

.mk-home-news-card p {
    max-width: 820px;
    margin: 0;
    color: rgba(17, 24, 39, .70);
    font-size: 1.42rem;
    line-height: 1.48;
}

.mk-home-news-more {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: auto;
    margin-top: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #006233;
    font-size: 1.24rem;
    font-weight: 780;
}

.mk-home-news-more::after {
    content: "→";
    margin-left: 5px;
}

.mk-home-news-link:hover .mk-home-news-more {
    background: transparent;
    color: #B91C1C;
}

.mk-home-latest-more {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-height: auto;
    margin-top: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #006233;
    font-size: 1.42rem;
    font-weight: 850;
}

.mk-home-latest-more:hover {
    background: transparent;
    color: #B91C1C;
    opacity: 1;
}

@media (max-width: 640px) {
    .mk-home-latest {
        margin: 18px 0 38px;
    }

    .mk-home-news-link {
        padding: 14px 0;
    }

    .mk-home-news-card h3 {
        font-size: 1.72rem;
    }

    .mk-home-latest-more {
        width: auto;
    }
}
/* /Marokko Kompass home latest */

/* Marokko Kompass article layout */
.post-template .gh-article-header.gh-canvas {
    --content-width: 900px;
    --container-width: 1100px;
    margin-top: 34px;
}

.post-template .gh-content.gh-canvas,
.post-template .gh-comments.gh-canvas,
.post-template .gh-article > .gh-canvas {
    --content-width: 800px;
}

.post-template .gh-article-title {
    max-width: 900px;
    color: #111827;
    font-size: clamp(3.8rem, 5.6vw, 6.4rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.post-template .gh-article-excerpt {
    max-width: 820px;
    margin-top: 16px;
    color: #4B5563;
    font-size: clamp(1.8rem, 2vw, 2.15rem);
    line-height: 1.55;
}

.post-template .mk-post-tags {
    margin-bottom: 18px;
    gap: 7px;
}

.post-template .mk-post-tag {
    min-height: 28px;
    padding: 5px 10px;
    border-color: rgba(17, 24, 39, .09);
    background: #F9FAFB;
    color: #006233;
    font-size: 1.15rem;
}

.post-template .mk-post-tag:first-child {
    background: rgba(185, 28, 28, .08);
    color: #B91C1C;
}

.post-template .gh-article-image {
    grid-column: wide;
    width: 100%;
    max-width: 1100px;
    margin: 34px auto 0;
}

.post-template .gh-article-image img {
    width: 100%;
    height: 420px;
    border-radius: 12px;
    object-fit: cover;
    background: #F9FAFB;
}

.post-template .gh-article-image img[src=""],
.post-template .gh-article-image img:not([src]) {
    display: none;
}

.post-template .gh-article-image figcaption {
    max-width: 900px;
    margin: 9px auto 0;
    color: rgba(17, 24, 39, .54);
    font-size: 1.25rem;
    line-height: 1.45;
    text-align: left;
}

.post-template .gh-article-image figcaption a {
    color: rgba(17, 24, 39, .62);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.post-template .gh-content {
    margin-top: 44px;
    font-size: 1.8rem;
    line-height: 1.75;
}

.post-template .gh-content > p,
.post-template .gh-content > ul,
.post-template .gh-content > ol {
    margin-top: 0;
    margin-bottom: 1.25em;
}

.post-template .gh-content > h2 {
    margin-top: 2.1em;
    margin-bottom: .65em;
    color: #111827;
    font-size: clamp(2.4rem, 3vw, 3.2rem);
    line-height: 1.18;
}

.post-template .gh-content > h3 {
    margin-top: 1.8em;
    margin-bottom: .55em;
    color: #111827;
    font-size: clamp(2.05rem, 2.4vw, 2.55rem);
    line-height: 1.22;
}

.post-template .gh-content a {
    color: #006233;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.post-template .gh-content a:hover {
    color: #B91C1C;
}

.post-template .mk-share {
    margin-top: 42px;
}

@media (max-width: 767px) {
    .post-template .gh-article-header.gh-canvas,
    .post-template .gh-content.gh-canvas,
    .post-template .gh-comments.gh-canvas,
    .post-template .gh-article > .gh-canvas {
        --content-width: 100%;
    }

    .post-template .gh-article-header.gh-canvas {
        margin-top: 24px;
    }

    .post-template .gh-article-title {
        font-size: clamp(3.1rem, 10vw, 4.4rem);
        line-height: 1.1;
    }

    .post-template .gh-article-image {
        grid-column: main;
        margin-top: 26px;
    }

    .post-template .gh-article-image img {
        height: clamp(230px, 58vw, 340px);
        border-radius: 10px;
    }

    .post-template .gh-content {
        margin-top: 34px;
        font-size: 1.72rem;
        line-height: 1.72;
    }
}
/* /Marokko Kompass article layout */

/* Marokko Kompass logo */
.mk-navigation .mk-logo-link {
    display: inline-flex;
    align-items: center;
    color: #111827;
    line-height: 1;
}

.mk-navigation .mk-logo-img {
    display: block;
    width: 252px;
    max-width: min(54vw, 252px);
    height: 40px;
    object-fit: contain;
}

.mk-navigation .mk-logo-link:hover {
    opacity: .92;
}

@media (max-width: 767px) {
    .mk-navigation .mk-logo-img {
        width: 214px;
        height: 36px;
    }
}

@media (max-width: 420px) {
    .mk-navigation .mk-logo-img {
        content: url("/assets/images/marokko-kompass-icon.svg");
        width: 36px;
        height: 36px;
    }
}
/* /Marokko Kompass logo */

