/* =====================================================================
   MineRaven — Thème pirate/corbeau pour Azuriom
   Direction artistique : crique de corsaire la nuit.
   Abysses bleu-sarcelle · or vieilli · accents cramoisis · parchemin.
   ===================================================================== */

/* ---------- Polices ---------- */
/* (Le <link> Google Fonts est chargé dans layouts/base.blade.php) */

:root {
    /* Repris/écrasés par le bloc <style> de base.blade.php selon la config */
    --bs-color-text: #e8ddc7;
    --primary-color: #e0a92e;
    --secondary-color: #c5403c;
    --background-color: #0a141d;
    --background-color-transparent: #0a141dcc;
    --background-gradient-primary-color: #102633;
    --surface-color: #13242f;
    --primary-gradient: linear-gradient(150deg, #f6d878, #e0a92e 45%, #a8780f);

    --mr-font-display: 'Cinzel', 'Times New Roman', serif;
    --mr-font-deco: 'Cinzel Decorative', 'Cinzel', serif;
    --mr-font-body: 'Spectral', Georgia, 'Times New Roman', serif;

    --mr-radius: 14px;
    --mr-border: 1px solid color-mix(in srgb, var(--primary-color) 28%, transparent);
    --mr-shadow: 0 18px 45px -20px rgba(0, 0, 0, 0.75);

    --bs-primary: var(--primary-color);
    --bs-body-font-family: var(--mr-font-body);
    --bs-link-color-rgb: 224, 169, 46;
    --bs-link-hover-color-rgb: 246, 216, 120;
}

/* =====================================================================
   1. Base & typographie
   ===================================================================== */
* { scrollbar-color: var(--primary-color) transparent; }

html, body {
    height: 100%;
    font-family: var(--mr-font-body);
    font-size: 1.02rem;
}

::selection {
    background-color: var(--primary-color);
    color: #0a141d;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: var(--mr-font-display);
    letter-spacing: 0.02em;
}

h1 { font-size: 2.35rem; font-weight: 800; margin-bottom: 1rem; }
h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 0.85rem; }
h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.6rem; }
p  { margin-bottom: 1.4rem; line-height: 1.7; }

a { text-decoration: none; color: var(--primary-color); transition: color 0.2s ease; }
a:hover { color: color-mix(in srgb, var(--primary-color) 70%, #fff); }

.text-primary { color: var(--primary-color) !important; }
.text-color-3 { color: var(--secondary-color) !important; }

/* Titres de section avec filets ornés */
.mr-section-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    position: relative;
    margin-bottom: 2.5rem;
}
.mr-section-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mr-section-title::after {
    content: "";
    display: block;
    width: 180px;
    max-width: 60%;
    height: 2px;
    margin: 0.9rem auto 0;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}
.mr-section-title::before {
    content: "\2693"; /* ancre */
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    opacity: 0.85;
    margin-bottom: 0.4rem;
}

/* =====================================================================
   2. Atmosphère de fond (grain + voiles lumineuses)
   ===================================================================== */
#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--background-color);
    color: var(--bs-color-text);
    position: relative;
    isolation: isolate;
}
#app::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(900px 600px at 12% -5%, color-mix(in srgb, var(--primary-color) 12%, transparent), transparent 60%),
        radial-gradient(800px 650px at 95% 8%, color-mix(in srgb, var(--secondary-color) 12%, transparent), transparent 55%),
        linear-gradient(180deg, var(--background-color), var(--background-gradient-primary-color));
}
/* grain subtil */
#app::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.content {
    margin-top: 132px;
    min-height: calc(100vh - 320px);
}

/* =====================================================================
   3. Bandeau d'annonce
   ===================================================================== */
.mr-announce {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1031;
    text-align: center;
    font-family: var(--mr-font-display);
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    padding: 7px 12px;
    color: #0a141d;
    background: var(--primary-gradient);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.mr-announce span { position: relative; z-index: 1; }

/* =====================================================================
   4. Navbar
   ===================================================================== */
.navbar {
    position: fixed;
    top: 33px; /* sous le bandeau */
    left: 0; right: 0;
    z-index: 1030;
    margin: 14px auto 0;
    max-width: 1180px;
    border-radius: 18px;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    background: color-mix(in srgb, var(--surface-color) 78%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary-color) 22%, transparent);
    box-shadow: var(--mr-shadow);
    color: var(--bs-color-text);
    transition: top 0.25s ease, box-shadow 0.25s ease;
}
.no-announce .navbar { top: 12px; }
.navbar .container { max-width: 100%; }

.navbar-logo img { width: 46px; height: 46px; filter: drop-shadow(0 0 10px color-mix(in srgb, var(--primary-color) 55%, transparent)); }
.navbar-brand, .navbar-brand:hover, .navbar-brand:focus { color: var(--bs-color-text); }
.navbar-brand .navbar-logo span {
    font-family: var(--mr-font-deco);
    font-size: 1.4rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    list-style: none;
    margin-bottom: 0;
    font-family: var(--mr-font-display);
    font-weight: 600;
    --bs-navbar-active-color: var(--bs-color-text);
}
.nav-link {
    color: var(--bs-color-text);
    text-transform: uppercase;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.85rem;
    border-radius: 10px;
    position: relative;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 4px;
    width: 0; height: 2px;
    background: var(--primary-gradient);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}
.nav-link:hover, .nav-link:focus { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.nav-link.active { color: var(--primary-color); }

.dropdown-menu {
    background: var(--surface-color);
    border: var(--mr-border);
    border-radius: 12px;
    box-shadow: var(--mr-shadow);
}
.dropdown-item { color: var(--bs-color-text); border-radius: 8px; }
.dropdown-item:hover, .dropdown-item.active {
    background: color-mix(in srgb, var(--primary-color) 18%, transparent);
    color: #fff;
}

.navbar-toggler { color: var(--primary-color); border: none; font-size: 1.5rem; }
.navbar-toggler:focus { box-shadow: none; }

/* Boutons d'action navbar : Discord + Boutique */
.mr-nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px; height: 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: #fff;
    background: color-mix(in srgb, #5865F2 85%, #000);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mr-nav-icon:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px -8px #5865F2; }

.btn-shop {
    font-family: var(--mr-font-display);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #0a141d;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 0.5rem 1.2rem;
    box-shadow: 0 8px 22px -10px var(--primary-color);
    transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-shop:hover { color: #0a141d; transform: translateY(-2px); filter: brightness(1.07); }

.avatar { border: 2px solid color-mix(in srgb, var(--primary-color) 50%, transparent); }

/* =====================================================================
   5. Boutons
   ===================================================================== */
.btn {
    font-family: var(--mr-font-display);
    font-weight: 600;
    border-radius: 11px;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-primary {
    color: #0a141d;
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 10px 26px -12px var(--primary-color);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    color: #0a141d !important;
    background: var(--primary-gradient) !important;
    filter: brightness(1.08);
    transform: translateY(-2px);
}
.btn-secondary {
    color: var(--primary-color);
    background: transparent;
    border: 1.5px solid color-mix(in srgb, var(--primary-color) 60%, transparent);
}
.btn-secondary:hover, .btn-secondary:focus {
    color: #0a141d;
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.btn-success {
    background: linear-gradient(150deg, #3fae6a, #1f7d46);
    border: none; color: #fff;
}
.btn-danger { background: linear-gradient(150deg, #d8504c, var(--secondary-color)); border: none; }

/* =====================================================================
   6. Cartes (planches/parchemin avec coins ornés)
   ===================================================================== */
.card {
    background: color-mix(in srgb, var(--surface-color) 92%, transparent);
    border: var(--mr-border);
    border-radius: var(--mr-radius);
    color: var(--bs-color-text);
    box-shadow: var(--mr-shadow);
    position: relative;
    overflow: hidden;
}
.card::before {
    /* liseré supérieur doré */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-gradient);
    opacity: 0.85;
}
.card-header {
    background: color-mix(in srgb, var(--primary-color) 10%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 22%, transparent);
    font-family: var(--mr-font-display);
    color: var(--primary-color);
}
.card-footer {
    background: color-mix(in srgb, var(--background-color) 40%, transparent);
    border-top: 1px solid color-mix(in srgb, var(--primary-color) 14%, transparent);
}
.card-title { color: var(--bs-color-text); }

.card-hover-shadow { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.card-hover-shadow:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--primary-color) 55%, transparent);
    box-shadow: 0 28px 55px -22px rgba(0, 0, 0, 0.85), 0 0 0 1px color-mix(in srgb, var(--primary-color) 35%, transparent);
}

/* Coins de filigrane décoratifs */
.mr-corner {
    position: absolute;
    width: 26px; height: 26px;
    border-color: color-mix(in srgb, var(--primary-color) 55%, transparent);
    border-style: solid;
    pointer-events: none;
    opacity: 0.8;
}
.mr-corner.tl { top: 8px; left: 8px; border-width: 2px 0 0 2px; border-top-left-radius: 6px; }
.mr-corner.tr { top: 8px; right: 8px; border-width: 2px 2px 0 0; border-top-right-radius: 6px; }
.mr-corner.bl { bottom: 8px; left: 8px; border-width: 0 0 2px 2px; border-bottom-left-radius: 6px; }
.mr-corner.br { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; border-bottom-right-radius: 6px; }

/* =====================================================================
   7. Héros
   ===================================================================== */
.mr-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -132px; /* passe sous la navbar fixe */
    padding: 170px 1rem 90px;
    overflow: hidden;
}
.mr-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    animation: mr-slow-zoom 28s ease-in-out infinite alternate;
}
/* fond procédural par défaut si aucune image n'est définie */
.mr-hero__bg--default {
    background:
        radial-gradient(1200px 500px at 50% 120%, color-mix(in srgb, var(--primary-color) 20%, transparent), transparent 70%),
        linear-gradient(180deg, #07111a 0%, #0d2330 45%, #123140 100%);
}
.mr-hero__bg--default::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 70% 20%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 40% 60%, rgba(255,255,255,0.35), transparent),
        radial-gradient(1.5px 1.5px at 85% 50%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 55% 80%, rgba(255,255,255,0.25), transparent);
    opacity: 0.6;
}
.mr-hero__vignette {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at center, transparent 35%, color-mix(in srgb, var(--background-color) 78%, transparent) 100%),
        linear-gradient(180deg, color-mix(in srgb, var(--background-color) 55%, transparent), transparent 30%, color-mix(in srgb, var(--background-color) 92%, transparent));
}

.mr-hero__emblem {
    width: clamp(180px, 26vw, 280px);
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 30px color-mix(in srgb, var(--primary-color) 45%, transparent));
    animation: mr-float 5s ease-in-out infinite;
}
.mr-hero h1 {
    font-family: var(--mr-font-deco);
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.05;
    margin-bottom: 0.4rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.mr-hero h1 .mr-grad {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mr-hero__subtitle {
    font-family: var(--mr-font-display);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}
.mr-hero__lead {
    max-width: 640px;
    margin: 0 auto 2rem;
    font-size: 1.08rem;
    color: color-mix(in srgb, var(--bs-color-text) 88%, transparent);
}

.mr-hero__actions {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Bouton IP « planche gravée » */
.mr-ip {
    font-family: var(--mr-font-display);
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 1.05rem;
    color: #0a141d;
    background: var(--primary-gradient);
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.6rem;
    position: relative;
    box-shadow: 0 12px 30px -12px var(--primary-color);
    transition: transform 0.2s ease, filter 0.2s ease;
}
.mr-ip:hover { transform: translateY(-2px); filter: brightness(1.08); color: #0a141d; }
.mr-ip i { margin-right: 0.5rem; }

/* Compteur de joueurs « doublon » */
.mr-coin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mr-font-display);
    font-weight: 600;
    color: var(--bs-color-text);
    background: color-mix(in srgb, var(--surface-color) 80%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary-color) 35%, transparent);
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.mr-coin .mr-dot { width: 10px; height: 10px; border-radius: 50%; box-shadow: 0 0 10px currentColor; }
.mr-coin .mr-dot.online { background: #4cd07d; color: #4cd07d; animation: mr-pulse 2s infinite; }
.mr-coin .mr-dot.offline { background: #d8504c; color: #d8504c; }
.mr-coin b { color: var(--primary-color); }

.mr-hero__discord {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 14px;
    font-size: 1.5rem;
    color: #fff;
    background: color-mix(in srgb, #5865F2 88%, #000);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.mr-hero__discord:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 26px -10px #5865F2; }

/* Vague décorative en bas du héros */
.mr-wave {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    width: 100%;
    line-height: 0;
    z-index: 0;
}
.mr-wave svg { width: 100%; height: 90px; display: block; }
.mr-wave path { fill: var(--background-color); }

/* =====================================================================
   8. Actualités / Journal de bord
   ===================================================================== */
.mr-news-img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-bottom: 1px solid color-mix(in srgb, var(--primary-color) 18%, transparent);
}
.post-text, .card-text { color: color-mix(in srgb, var(--bs-color-text) 82%, transparent); }
.blog-text img { max-width: 100%; height: auto; border-radius: 10px; }
.blog-text a { text-decoration: underline; }

/* =====================================================================
   9. Page Vote
   ===================================================================== */
.mr-vote-hero {
    background: linear-gradient(135deg, color-mix(in srgb, var(--secondary-color) 55%, #1a0d10), color-mix(in srgb, var(--background-gradient-primary-color) 90%, #000));
    border: 1px solid color-mix(in srgb, var(--primary-color) 30%, transparent);
    border-radius: var(--mr-radius);
    box-shadow: var(--mr-shadow);
    position: relative;
    overflow: hidden;
}
.mr-vote-hero::before {
    content: "\2638"; /* gouvernail */
    position: absolute;
    right: -10px; top: -20px;
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.12;
}
.vote-step .progress {
    height: 9px;
    background: color-mix(in srgb, var(--background-color) 60%, transparent);
    border-radius: 999px;
    margin-top: 0.4rem;
    overflow: hidden;
}
.vote-step .progress-bar { background: var(--primary-gradient) !important; }
.vote-timer { color: var(--primary-color) !important; font-variant-numeric: tabular-nums; }
.spinner-border { color: var(--primary-color) !important; }

/* =====================================================================
   10. Wiki
   ===================================================================== */
#wiki .card-body i { color: var(--primary-color); }
.badge.bg-primary { background: var(--primary-gradient) !important; color: #0a141d; }

/* =====================================================================
   11. Formulaires & alertes
   ===================================================================== */
.form-control, .form-select {
    background: color-mix(in srgb, var(--background-color) 55%, transparent);
    border: 1px solid color-mix(in srgb, var(--primary-color) 28%, transparent);
    color: var(--bs-color-text);
    border-radius: 10px;
}
.form-control:focus, .form-select:focus {
    background: color-mix(in srgb, var(--background-color) 65%, transparent);
    border-color: var(--primary-color);
    color: var(--bs-color-text);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--primary-color) 22%, transparent);
}
.form-control::placeholder { color: color-mix(in srgb, var(--bs-color-text) 50%, transparent); }
.form-label { font-family: var(--mr-font-display); font-weight: 600; }

.alert {
    border-radius: var(--mr-radius);
    border: 1px solid color-mix(in srgb, var(--primary-color) 25%, transparent);
    background: color-mix(in srgb, var(--surface-color) 85%, transparent);
    color: var(--bs-color-text);
}
.alert-warning { border-color: color-mix(in srgb, var(--primary-color) 50%, transparent); }
.alert-danger  { border-color: color-mix(in srgb, var(--secondary-color) 50%, transparent); }

/* =====================================================================
   12. Footer
   ===================================================================== */
footer {
    margin-top: 4rem;
    position: relative;
}
.mr-footer {
    background:
        linear-gradient(180deg, transparent, color-mix(in srgb, #000 35%, transparent)),
        color-mix(in srgb, var(--surface-color) 60%, transparent);
    border-top: 2px solid color-mix(in srgb, var(--primary-color) 35%, transparent);
    padding-top: 3rem;
}
.mr-footer h4 {
    font-family: var(--mr-font-display);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1rem;
}
.mr-footer a { color: color-mix(in srgb, var(--bs-color-text) 82%, transparent); }
.mr-footer a:hover { color: var(--primary-color); }
.mr-footer__brand img { width: 56px; height: 56px; filter: drop-shadow(0 0 14px color-mix(in srgb, var(--primary-color) 50%, transparent)); }
.mr-footer__brand span {
    font-family: var(--mr-font-deco);
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mr-footer__bottom {
    border-top: 1px solid color-mix(in srgb, var(--primary-color) 15%, transparent);
    margin-top: 2rem;
    padding: 1.2rem 0;
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--bs-color-text) 70%, transparent);
}

/* =====================================================================
   13. Animations
   ===================================================================== */
@keyframes mr-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes mr-slow-zoom { from { transform: scale(1.05); } to { transform: scale(1.14); } }
@keyframes mr-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.mr-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.mr-reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .mr-hero__bg, .mr-hero__emblem, .mr-coin .mr-dot.online { animation: none !important; }
    .mr-reveal { transition: none; opacity: 1; transform: none; }
}

/* =====================================================================
   14. Scrollbar
   ===================================================================== */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--background-color); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), #8a5e0a);
    border-radius: 999px;
    border: 2px solid var(--background-color);
}

/* =====================================================================
   15. Responsive
   ===================================================================== */
@media (max-width: 991.98px) {
    .navbar { margin-left: 12px; margin-right: 12px; }
    .navbar-collapse {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid color-mix(in srgb, var(--primary-color) 18%, transparent);
    }
    .navbar-nav { flex-direction: column; align-items: stretch; gap: 0.25rem; }
    .nav-link { padding: 0.6rem 0.5rem; }
    .nav-link::after { display: none; }
    .mr-nav-icon, .btn-shop { width: auto; align-self: flex-start; }
    .mr-nav-icon { padding: 0 0.9rem; }
    .mr-hero { min-height: 78vh; }
}

@media (max-width: 575.98px) {
    h1 { font-size: 1.9rem; }
    .content { margin-top: 116px; }
    .mr-hero__actions { flex-direction: column; }
    .mr-ip { width: 100%; }
}
