:root {
    --maralora-bg: #ffffff;
    --maralora-text: #111827;
    --maralora-muted: #6b7280;
    --maralora-border: #e5e7eb;
    --maralora-primary: #0f172a;
    --maralora-accent: #d4af37;
    --maralora-radius: 16px;
    --maralora-container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--maralora-bg);
    color: var(--maralora-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(92%, var(--maralora-container));
    margin-inline: auto;
}

.site-header {
    border-bottom: 1px solid var(--maralora-border);
    background: #fff;
}

.site-header__inner,
.site-footer__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.primary-navigation ul,
.site-footer ul {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.content-area {
    padding-block: 56px;
}

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

.post-card {
    border: 1px solid var(--maralora-border);
    border-radius: var(--maralora-radius);
    overflow: hidden;
    background: #fff;
}

.post-card__content {
    padding: 20px;
}

.post-card__title {
    margin-top: 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 10px;
    background: var(--maralora-primary);
    color: #fff;
}

.site-footer {
    border-top: 1px solid var(--maralora-border);
    margin-top: 48px;
}

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

    .site-header__inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 16px;
    }

    .primary-navigation ul {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }
}


/* Maralora Business 1.2.0 */
.site-main {
    min-height: 50vh;
}

.maralora-elementor-page,
.maralora-elementor-page .entry-content {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: none;
}

.maralora-elementor-page .entry-content > *:first-child {
    margin-top: 0;
}

.site-header {
    position: relative;
    z-index: 1000;
}

.site-header__inner {
    min-height: 78px;
}

.site-branding {
    display: flex;
    align-items: center;
}

.site-title {
    font-weight: 700;
    font-size: 18px;
}

.primary-navigation ul {
    align-items: center;
}

.primary-navigation a {
    display: block;
    padding: 10px 2px;
    font-size: 14px;
}

.maralora-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 10px;
    background: transparent;
}

.maralora-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
}

.site-footer {
    margin-top: 0;
    background: var(--maralora-primary);
    color: #fff;
}

.maralora-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr;
    gap: 50px;
    padding-block: 64px 44px;
}

.site-footer h3 {
    margin-top: 0;
    color: #fff;
    font-size: 16px;
}

.maralora-footer-brand p,
.maralora-footer-cta p {
    color: rgba(255,255,255,.7);
    font-size: 13px;
}

.maralora-footer-links ul {
    display: grid;
    gap: 8px;
}

.maralora-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.65);
    font-size: 12px;
}

@media (max-width: 900px) {
    .site-header__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .maralora-menu-toggle {
        display: block;
        color: #fff;
    }

    .primary-navigation {
        display: none;
        position: absolute;
        inset-inline: 4%;
        top: calc(100% + 8px);
        padding: 12px;
        border-radius: 14px;
        background: var(--maralora-primary);
        box-shadow: 0 12px 30px rgba(0,0,0,.16);
    }

    .primary-navigation.is-open {
        display: block;
    }

    .primary-navigation ul {
        display: grid;
        gap: 2px;
    }

    .primary-navigation a {
        padding: 10px 12px;
    }

    .maralora-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 44px 30px;
    }
}
