/**
 * RhekTec Feuerwehr Plugin – Frontend CSS v5
 * New Design: Bebas Neue + Barlow, Mobile-First, iOS-Style
 */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600;700&family=Barlow+Condensed:wght@600;700&display=swap');

:root {
    --rt-red:        #E31E24;
    --rt-red-dark:   #B71C1C;
    --rt-red-light:  #fff1f1;
    --rt-navy:       #1A1A2E;
    --rt-navy-mid:   #16213E;
    --rt-navy-light: #0F3460;
    --rt-bg:         #F2F3F7;
    --rt-white:      #FFFFFF;
    --rt-border:     #E2E7F0;
    --rt-text:       #1A1A2E;
    --rt-muted:      #8A8FA8;
    --rt-green:      #10B981;
    --rt-amber:      #F59E0B;
    --rt-shadow:     0 2px 10px rgba(0,0,0,0.07);
    --rt-shadow-lg:  0 8px 28px rgba(0,0,0,0.12);
    --rt-shadow-red: 0 4px 16px rgba(227,30,36,0.3);
    --rt-radius:     14px;
    --rt-radius-sm:  10px;
    --rt-radius-xs:  7px;
    --rt-gap:        12px;
    --rt-pad:        16px;
    --ff-display:   'Bebas Neue', sans-serif;
    --ff-cond:      'Barlow Condensed', sans-serif;
    --ff-body:      'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
}

@media (min-width: 768px) {
    :root { --rt-gap: 20px; --rt-pad: 24px; }
}

/* BASE */
.rhektec-shell *, .rhektec-feed *, .rhektec-single-overview *, .rhektec-dashboard-wrapper * {
    box-sizing: border-box;
    font-family: var(--ff-body);
}

/* SHELL */
.rhektec-shell {
    max-width: 680px; margin: 0 auto;
    padding: var(--rt-gap); background: var(--rt-bg); min-height: 100vh;
}
@media (min-width: 768px) { .rhektec-shell { padding: var(--rt-pad); } }

/* PAGE HEAD */
.rhektec-page-head {
    background: var(--rt-navy); border-radius: var(--rt-radius);
    padding: 14px 18px; margin-bottom: var(--rt-gap);
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: var(--rt-shadow-lg);
}
.rhektec-page-head h2 {
    font-family: var(--ff-display); font-size: 1.6rem;
    letter-spacing: 1.5px; color: #fff; margin: 0;
}
.rhektec-page-head .rt-back-btn,
.rhektec-page-head .btn.btn-outline-secondary.btn-sm {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75) !important; padding: 6px 14px;
    border-radius: var(--rt-radius-xs); font-size: 0.8rem; font-weight: 600;
    text-decoration: none; transition: background 0.2s;
}
.rhektec-page-head .btn.btn-outline-secondary.btn-sm:hover { background: rgba(255,255,255,0.2); color: #fff !important; }

/* PROGRESS BAR */
.rhektec-progress-bar {
    background: var(--rt-white); border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius); padding: 12px 16px;
    margin-bottom: var(--rt-gap); box-shadow: var(--rt-shadow);
    display: flex; justify-content: space-between; align-items: center; position: relative;
}
.rhektec-progress-bar::before {
    content: ''; position: absolute; top: 50%; left: 32px; right: 32px;
    height: 1.5px; background: var(--rt-border); z-index: 0;
}
.rhektec-progress-step {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; position: relative; z-index: 1; flex: 1;
}
.rhektec-progress-step .step-number {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--rt-white); border: 2px solid var(--rt-border);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.82rem; color: var(--rt-muted); transition: all 0.3s;
}
.rhektec-progress-step .step-label {
    font-family: var(--ff-cond); font-size: 0.6rem; font-weight: 700;
    color: var(--rt-muted); letter-spacing: 0.3px; text-align: center;
}
.rhektec-progress-step.active .step-number {
    background: var(--rt-red); border-color: var(--rt-red); color: #fff;
    box-shadow: 0 0 0 4px rgba(227,30,36,0.18); transform: scale(1.1);
}
.rhektec-progress-step.active .step-label { color: var(--rt-red); font-weight: 700; }
.rhektec-progress-step.completed .step-number { background: var(--rt-green); border-color: var(--rt-green); color: #fff; }
.rhektec-progress-step.completed .step-label { color: var(--rt-green); }
@media (min-width: 480px) {
    .rhektec-progress-step .step-number { width: 38px; height: 38px; font-size: 0.88rem; }
    .rhektec-progress-step .step-label { font-size: 0.68rem; }
}

/* CARDS */
.rhektec-card, .card.rhektec-card {
    background: var(--rt-white); border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius); box-shadow: var(--rt-shadow);
    margin-bottom: var(--rt-gap); overflow: hidden;
}
.rhektec-card .card-body, .card.rhektec-card .card-body { padding: var(--rt-pad); }
.rhektec-card h5 {
    font-family: var(--ff-cond); font-size: 1.05rem; font-weight: 700;
    color: var(--rt-text); margin: 0 0 5px 0; display: flex; align-items: center; gap: 6px;
}
.rhektec-card .text-muted, .rhektec-card small.text-muted {
    font-size: 0.78rem; color: var(--rt-muted); display: block; margin-bottom: 14px;
}

/* CATEGORY GRID */
.rhektec-category-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
}
@media (min-width: 480px) { .rhektec-category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .rhektec-category-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }

.category-card {
    background: var(--rt-white); border: 2px solid var(--rt-border);
    border-radius: var(--rt-radius-sm); padding: 14px 8px;
    display: flex; flex-direction: column; align-items: center;
    gap: 5px; cursor: pointer; transition: all 0.25s; text-align: center;
}
.category-card:hover { border-color: #ccc; transform: translateY(-3px); box-shadow: var(--rt-shadow); }
.category-card.active { background: var(--rt-red-light); border-color: var(--rt-red); box-shadow: 0 0 0 3px rgba(227,30,36,0.12); }
.category-card .category-icon { font-size: 1.8rem; line-height: 1; }
.category-card strong { font-size: 0.78rem; font-weight: 700; color: var(--rt-text); line-height: 1.2; }
.category-card small { font-size: 0.63rem; color: var(--rt-muted); line-height: 1.2; display: block; margin-bottom: 0 !important; }
.category-card.active strong { color: var(--rt-red); }

/* FORM ELEMENTS */
.form-label {
    font-size: 0.83rem; font-weight: 700; color: var(--rt-text);
    margin-bottom: 5px; display: block;
}
.form-control, .form-select {
    border: 1.5px solid var(--rt-border); border-radius: var(--rt-radius-sm);
    padding: 11px 13px; font-size: 0.9rem; font-family: var(--ff-body);
    color: var(--rt-text); width: 100%; outline: none;
    transition: all 0.2s; background: #FAFBFC;
}
.form-control:focus, .form-select:focus {
    border-color: var(--rt-red); box-shadow: 0 0 0 3px rgba(227,30,36,0.1); background: var(--rt-white);
}
.form-control[readonly] { background: #F0F2F5; color: var(--rt-muted); }
textarea.form-control { resize: vertical; min-height: 130px; line-height: 1.6; }

/* Bootstrap grid overrides for form */
.row.g-3 { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 520px) { .row.g-3 { grid-template-columns: 1fr 1fr; } }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 11px 20px; border-radius: var(--rt-radius-sm); font-family: var(--ff-body);
    font-weight: 700; font-size: 0.9rem; border: none; cursor: pointer;
    text-decoration: none; transition: all 0.2s; letter-spacing: 0.2px;
}
.btn-danger { background: var(--rt-red); color: #fff; box-shadow: var(--rt-shadow-red); }
.btn-danger:hover { background: var(--rt-red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(227,30,36,0.4); color: #fff; }
.btn-outline-secondary, .btn-secondary { background: var(--rt-white); color: var(--rt-muted); border: 1.5px solid var(--rt-border); }
.btn-outline-secondary:hover, .btn-secondary:hover { background: var(--rt-bg); color: var(--rt-text); }
.btn-outline-danger {
    background: transparent; border: 1.5px solid var(--rt-red); color: var(--rt-red);
    font-family: var(--ff-cond); font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.4px; padding: 6px 13px; border-radius: var(--rt-radius-xs);
}
.btn-outline-danger:hover { background: var(--rt-red); color: #fff; }
.btn-sm { padding: 6px 12px; font-size: 0.8rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }

/* STEP NAVIGATION */
.rhektec-step-navigation { display: flex; gap: 8px; margin-top: var(--rt-gap); }
.rhektec-step-navigation .btn { flex: 1; }
.rhektec-step-navigation #submit-btn { flex: 1 1 100%; padding: 14px; font-size: 1rem; }

/* STEP ANIMATION */
.rhektec-step { animation: rtFadeIn 0.3s ease; }
@keyframes rtFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* IMAGE PREVIEW */
.rhektec-image-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; margin-top: 12px; }
.rhektec-image-grid img { width: 100%; height: 80px; object-fit: cover; border-radius: var(--rt-radius-xs); border: 1px solid var(--rt-border); }

/* ALERTS */
.alert { padding: 11px 14px; border-radius: var(--rt-radius-xs); margin-top: 12px; font-size: 0.82rem; line-height: 1.5; display: flex; gap: 8px; align-items: flex-start; }
.alert-info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #1E40AF; }
.alert-warning { background: #FFFBEB; border: 1px solid #FDE68A; color: #92400E; }

/* SOCIAL MEDIA TOGGLES */
.rt-social-card {
    background: var(--rt-white); border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius); box-shadow: var(--rt-shadow);
    margin-bottom: var(--rt-gap); overflow: hidden;
}
.rt-social-header {
    padding: 13px 16px; border-bottom: 1px solid var(--rt-border);
    display: flex; align-items: center; gap: 8px;
}
.rt-social-header h5 { font-family: var(--ff-cond); font-size: 1rem; font-weight: 700; color: var(--rt-text); margin: 0; }
.rt-social-header .sub { font-size: 0.72rem; color: var(--rt-muted); margin-top: 1px; }

.rt-social-option {
    padding: 14px 16px; border-bottom: 1px solid var(--rt-border);
    display: flex; align-items: center; gap: 14px;
}
.rt-social-option:last-child { border-bottom: none; }

.rt-social-logo {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; flex-shrink: 0;
}
.rt-social-logo.fb { background: linear-gradient(135deg,#1877F2,#0a5bc4); box-shadow: 0 4px 12px rgba(24,119,242,.3); }
.rt-social-logo.ig { background: linear-gradient(135deg,#F58529,#DD2A7B,#8134AF); box-shadow: 0 4px 12px rgba(221,42,123,.3); }

.rt-social-info { flex: 1; overflow: hidden; }
.rt-social-name { font-size: 0.92rem; font-weight: 700; color: var(--rt-text); margin-bottom: 2px; }
.rt-social-handle { font-size: 0.72rem; color: var(--rt-muted); font-family: var(--ff-cond); }

/* iOS-style toggle via checkbox */
.form-check { display: flex; align-items: center; gap: 12px; padding: 0; margin: 0; }
.form-check-input {
    width: 48px; height: 28px; border-radius: 14px;
    appearance: none; -webkit-appearance: none;
    background: #E5E7EB; border: none; cursor: pointer; position: relative;
    transition: background 0.3s; flex-shrink: 0;
}
.form-check-input::after {
    content: ''; position: absolute;
    width: 24px; height: 24px; border-radius: 50%;
    background: #fff; top: 2px; left: 2px;
    transition: transform 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.form-check-input:checked { background: var(--rt-red); }
.form-check-input:checked::after { transform: translateX(20px); }
.form-check-label { font-size: 0.88rem; font-weight: 600; color: var(--rt-text); cursor: pointer; display: flex; align-items: center; gap: 6px; }
.form-check-label.text-muted { color: var(--rt-muted); }
.form-check-input:disabled { opacity: 0.5; cursor: default; }

/* h6 in social section */
h6.mb-2 { font-family: var(--ff-cond); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--rt-muted); margin: 0 0 10px 0; padding: 14px 16px 0; }

/* FEED */
.rhektec-feed { max-width: 800px; margin: 0 auto; padding: var(--rt-gap); background: var(--rt-bg); min-height: 100vh; }

.rhektec-feed-hero {
    background: linear-gradient(135deg, var(--rt-navy) 0%, var(--rt-navy-light) 100%);
    border-radius: var(--rt-radius); padding: 20px 22px;
    margin-bottom: var(--rt-gap); position: relative; overflow: hidden; box-shadow: var(--rt-shadow-lg);
}
.rhektec-feed-hero::after { content: '🔥'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 4rem; opacity: 0.07; }

.rhektec-feed-top { margin-bottom: var(--rt-gap); }

.rhektec-eyebrow {
    font-family: var(--ff-cond); font-size: 0.68rem; font-weight: 700;
    letter-spacing: 2.5px; color: var(--rt-red); text-transform: uppercase; margin: 0 0 4px 0; display: block;
}
.rhektec-feed-hero h3 { font-family: var(--ff-display); font-size: 1.9rem; color: #fff; letter-spacing: 1.5px; margin: 0 0 4px 0; line-height: 1; }
.rhektec-feed-hero p { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin: 0; }

/* The legacy feed-top inside the feed */
.rhektec-feed > .rhektec-feed-top {
    background: linear-gradient(135deg, var(--rt-navy) 0%, var(--rt-navy-light) 100%);
    border-radius: var(--rt-radius); padding: 20px 22px;
    margin-bottom: var(--rt-gap); position: relative; overflow: hidden; box-shadow: var(--rt-shadow-lg);
}
.rhektec-feed > .rhektec-feed-top::after { content: '🔥'; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 4rem; opacity: 0.07; }
.rhektec-feed > .rhektec-feed-top h3 { font-family: var(--ff-display); font-size: 1.9rem; color: #fff; letter-spacing: 1.5px; margin: 0; line-height: 1; }

.rhektec-cat-nav { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; padding: 0; margin-bottom: var(--rt-gap); }
.rhektec-cat-nav::-webkit-scrollbar { display: none; }
.rhektec-cat-pill {
    flex-shrink: 0; padding: 5px 15px; border-radius: 999px;
    border: 1.5px solid var(--rt-border); background: var(--rt-white);
    font-family: var(--ff-body); font-size: 0.8rem; font-weight: 700;
    color: var(--rt-muted); cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.rhektec-cat-pill.is-active, .rhektec-cat-pill:hover { background: var(--rt-red); border-color: var(--rt-red); color: #fff; box-shadow: 0 2px 8px rgba(227,30,36,0.3); }

.rhektec-feed-list { display: flex; flex-direction: column; gap: 10px; }

.rhektec-feed-item {
    background: var(--rt-white); border: 1px solid var(--rt-border);
    border-radius: var(--rt-radius); overflow: hidden; box-shadow: var(--rt-shadow);
    transition: all 0.2s; display: grid; grid-template-columns: 1fr;
}
.rhektec-feed-item:hover { box-shadow: var(--rt-shadow-lg); transform: translateY(-2px); }
@media (min-width: 560px) { .rhektec-feed-item { grid-template-columns: 200px 1fr; } }

.rhektec-feed-thumb {
    position: relative; background: linear-gradient(135deg, var(--rt-navy), var(--rt-navy-light));
    min-height: 150px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.rhektec-feed-thumb img { width: 100%; height: 100%; object-fit: cover; min-height: 150px; display: block; }
.rhektec-feed-no-thumb { font-size: 3rem; opacity: 0.2; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 150px; }

.rhektec-feed-content { padding: 14px 16px; display: flex; flex-direction: column; justify-content: center; }
.rhektec-feed-title { font-family: var(--ff-cond); font-size: 1rem; font-weight: 700; color: var(--rt-text); margin: 0 0 6px 0; line-height: 1.3; }
.rhektec-feed-title a { color: inherit; text-decoration: none; }
.rhektec-feed-title a:hover { color: var(--rt-red); }
.rhektec-feed-meta { font-family: var(--ff-cond); font-size: 0.72rem; color: var(--rt-muted); font-weight: 600; letter-spacing: 0.3px; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.rhektec-feed-meta a { color: var(--rt-red); font-weight: 700; text-decoration: none; }
.rhektec-feed-excerpt { font-size: 0.8rem; color: var(--rt-muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 10px; }

.rhektec-feed-pagination { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; margin-top: 20px; padding-top: 8px; }
.rhektec-feed-pagination .page-numbers {
    width: 36px; height: 36px; border-radius: var(--rt-radius-xs);
    border: 1.5px solid var(--rt-border); background: var(--rt-white);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.88rem; font-weight: 700; color: var(--rt-muted); text-decoration: none; transition: all 0.2s;
}
.rhektec-feed-pagination .page-numbers.current { background: var(--rt-red); border-color: var(--rt-red); color: #fff; }
.rhektec-feed-pagination .page-numbers:hover:not(.current) { border-color: var(--rt-red); color: var(--rt-red); }
.rhektec-feed-pagination .prev, .rhektec-feed-pagination .next { width: auto; padding: 0 12px; font-family: var(--ff-cond); font-size: 0.78rem; letter-spacing: 0.5px; }

/* SINGLE POST OVERVIEW */
.rhektec-single-overview { background: var(--rt-navy); border-radius: var(--rt-radius); overflow: hidden; margin-bottom: 16px; box-shadow: var(--rt-shadow-lg); }
.rhektec-single-head { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.rhektec-single-head .rhektec-eyebrow { color: var(--rt-red); }
.rhektec-single-head h3 { font-family: var(--ff-display); font-size: 1.4rem; color: #fff; letter-spacing: 1px; margin: 0; line-height: 1; }
.rhektec-overview-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 480px) { .rhektec-overview-grid { grid-template-columns: 1fr 1fr; } }
.rhektec-overview-item { padding: 12px 18px; border-bottom: 1px solid rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06); }
.rhektec-overview-item:nth-child(even) { border-right: none; }
.rhektec-overview-key { font-family: var(--ff-cond); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 3px; }
.rhektec-overview-value { font-size: 0.9rem; font-weight: 600; color: #fff; }
.rhektec-single-content { background: var(--rt-white); border: 1px solid var(--rt-border); border-radius: var(--rt-radius); padding: var(--rt-pad); box-shadow: var(--rt-shadow); font-size: 0.95rem; line-height: 1.75; color: #374151; }

/* LOGIN PAGE */
.rhektec-login-body {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--rt-navy) 0%, var(--rt-navy-mid) 50%, var(--rt-navy-light) 100%);
    display: flex; align-items: center; justify-content: center; padding: 20px;
}
.login-card { width: 100%; max-width: 400px; background: var(--rt-white); border-radius: 22px; padding: 0; box-shadow: 0 24px 60px rgba(0,0,0,0.3); overflow: hidden; }
.login-card-top {
    background: linear-gradient(160deg, var(--rt-navy) 0%, var(--rt-navy-light) 100%);
    padding: 36px 28px 30px; text-align: center; position: relative; overflow: hidden;
}
.login-card-top::after { content: '🚒'; position: absolute; right: -10px; bottom: -20px; font-size: 7rem; opacity: 0.05; }
.login-app-icon {
    width: 68px; height: 68px; border-radius: 18px; background: var(--rt-red);
    display: flex; align-items: center; justify-content: center; font-size: 2rem;
    margin: 0 auto 12px; box-shadow: 0 8px 24px rgba(227,30,36,0.5); position: relative; z-index: 1;
}
.login-app-name { font-family: var(--ff-display); font-size: 1.8rem; color: #fff; letter-spacing: 3px; margin: 0 0 2px 0; position: relative; z-index: 1; }
.login-app-sub { color: rgba(255,255,255,0.45); font-size: 0.78rem; position: relative; z-index: 1; font-family: var(--ff-cond); letter-spacing: 1px; }
.login-card-body { padding: 24px 28px; }
.login-greeting h2 { font-family: var(--ff-cond); font-size: 1.5rem; font-weight: 700; color: var(--rt-text); margin: 0 0 3px 0; }
.login-greeting p { font-size: 0.82rem; color: var(--rt-muted); margin: 0 0 20px 0; }
.login-input-wrap { position: relative; margin-bottom: 14px; }
.login-input-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); font-size: 0.9rem; pointer-events: none; }
.login-input-wrap .form-control { padding-left: 38px; }
.login-forgot { text-align: right; margin-top: -6px; margin-bottom: 18px; }
.login-forgot a { font-size: 0.78rem; color: var(--rt-red); text-decoration: none; font-weight: 600; }
.btn-login-submit { width: 100%; padding: 14px; border-radius: var(--rt-radius-sm); background: var(--rt-red); color: #fff; border: none; font-family: var(--ff-body); font-size: 1rem; font-weight: 700; cursor: pointer; box-shadow: 0 6px 20px rgba(227,30,36,0.4); transition: all 0.2s; margin-bottom: 16px; }
.btn-login-submit:hover { background: var(--rt-red-dark); transform: translateY(-2px); }
.login-divider { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.login-divider::before, .login-divider::after { content: ''; flex: 1; height: 1px; background: var(--rt-border); }
.login-divider span { font-size: 0.7rem; color: var(--rt-muted); font-weight: 600; white-space: nowrap; font-family: var(--ff-cond); letter-spacing: 0.5px; }
.login-info-box { background: #F0F9FF; border: 1px solid #BAE6FD; border-radius: var(--rt-radius-xs); padding: 11px 13px; font-size: 0.76rem; color: #0369A1; line-height: 1.5; display: flex; gap: 7px; margin-bottom: 18px; }
.login-footer-links { text-align: center; font-size: 0.72rem; color: var(--rt-muted); }
.login-footer-links a { color: var(--rt-red); text-decoration: none; font-weight: 600; }
.login-logo { display: none; }

/* UTILITIES */
*:focus-visible { outline: 2px solid var(--rt-red); outline-offset: 2px; }
.d-none { display: none !important; }
.d-grid { display: grid; }
.d-flex { display: flex; }
.text-muted { color: var(--rt-muted) !important; }
.fw-bold { font-weight: 700 !important; }
.mb-1 { margin-bottom: 4px; } .mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 16px; }
.mt-3 { margin-top: 12px; } .mt-4 { margin-top: 16px; }
.d-block { display: block; }
.img-fluid { max-width: 100%; height: auto; }
.text-center { text-align: center; }
.text-start { text-align: left; }
.small { font-size: 0.85em; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
