/* Marche Public - Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --mp-primary: #2563eb;
    --mp-primary-hover: #1d4ed8;
    --mp-primary-light: #dbeafe;
    --mp-primary-subtle: #eff6ff;
    --mp-dark: #0f172a;
    --mp-dark-soft: #1e293b;
    --mp-light: #f8fafc;
    --mp-text: #0f172a;
    --mp-text-muted: #64748b;
    --mp-bg-card: #ffffff;
    --mp-border: #e2e8f0;
    --mp-border-light: #f1f5f9;
    --mp-success: #059669;
    --mp-warning: #d97706;
    --mp-danger: #dc2626;
    --mp-radius: 0.75rem;
    --mp-radius-lg: 1rem;
    --mp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --mp-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --mp-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --mp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
}

/* ===== Base ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--mp-light);
    color: var(--mp-text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0.9375rem;
    line-height: 1.6;
}

main.container {
    flex: 1;
    max-width: 1100px;
}

/* Marche detail: wider container */
main.container.container-wide {
    max-width: 1320px;
}

/* ===== Navbar ===== */
.navbar {
    background: var(--mp-dark) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: -0.5px;
    font-size: 1.15rem;
    color: #fff !important;
}

.navbar .nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--mp-radius);
    transition: all 0.15s ease;
    margin-left: 0.25rem;
}

.navbar .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

.navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
    font-weight: 600;
    border-bottom: none;
}

/* ===== Hero ===== */
.hero-section {
    background: linear-gradient(135deg, var(--mp-dark) 0%, #1e40af 50%, var(--mp-primary) 100%);
    color: #fff;
    border-radius: var(--mp-radius-lg);
    padding: 5rem 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .display-4 {
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-section .lead {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.btn-hero {
    background: #fff;
    color: var(--mp-primary);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50rem;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.btn-hero:hover {
    background: #fff;
    color: var(--mp-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ===== Page Titles ===== */
h1.page-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mp-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

/* ===== Feature Cards (Home) ===== */
.feature-card {
    border: 1px solid var(--mp-border);
    background: var(--mp-bg-card);
    border-radius: var(--mp-radius-lg);
    box-shadow: var(--mp-shadow-sm);
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow-lg);
    border-color: var(--mp-primary-light);
}

.feature-card .card-body {
    padding: 2rem 1.5rem;
}

.feature-card .card-title {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.3px;
}

.feature-card .card-text {
    color: var(--mp-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.feature-icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 1.4rem;
    background: var(--mp-primary-subtle);
    border-radius: 14px;
    margin: 0 auto;
    color: var(--mp-primary);
}

/* ===== Stat Bar ===== */
.stat-bar {
    background: var(--mp-dark);
    color: #fff;
    border-radius: var(--mp-radius);
    padding: 1.25rem 2rem;
    font-size: 0.9375rem;
}

.stat-bar strong {
    font-size: 1.25rem;
    font-weight: 700;
}

/* ===== Cards (General) ===== */
.card {
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius);
    background: var(--mp-bg-card);
    box-shadow: var(--mp-shadow-sm);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    box-shadow: var(--mp-shadow-md);
}

/* ===== Feed Cards ===== */
.feed-card {
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-border);
    position: relative;
    overflow: hidden;
}

.feed-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--mp-primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.feed-card:hover {
    border-color: var(--mp-primary-light);
    box-shadow: var(--mp-shadow-md);
}

.feed-card:hover::before {
    opacity: 1;
}

.feed-card .card-body {
    padding: 1.25rem 1.5rem;
}

.feed-card .card-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.4;
    margin-bottom: 0;
}

.feed-card .card-title a {
    color: var(--mp-text);
    text-decoration: none;
}

.feed-card .card-title a:hover {
    color: var(--mp-primary);
}

.feed-card .card-text {
    font-size: 0.85rem;
    color: var(--mp-text-muted);
    line-height: 1.5;
}

.feed-card .text-muted.small span {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

/* ===== Score Badge ===== */
.score-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25em 0.6em;
    min-width: 2.75em;
    text-align: center;
    border-radius: 6px;
    letter-spacing: 0.02em;
}

/* ===== Interaction Buttons ===== */
.btn-interaction {
    border-radius: 8px;
    transition: all 0.15s ease;
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
    border-width: 1.5px;
}

.btn-interaction:hover {
    transform: scale(1.05);
}

.btn-interaction:active {
    transform: scale(0.97);
}

.btn-interaction:focus-visible {
    outline: 2px solid var(--mp-primary);
    outline-offset: 2px;
    box-shadow: none;
}

/* Feed action buttons - vertical on desktop */
.feed-actions {
    flex-direction: column;
    gap: 0.35rem !important;
}

/* ===== Badges ===== */
.badge {
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.01em;
    padding: 0.35em 0.65em;
    border-radius: 6px;
}

/* ===== Buttons ===== */
.btn {
    font-weight: 500;
    border-radius: var(--mp-radius);
    font-size: 0.875rem;
    transition: all 0.15s ease;
}

.btn-primary {
    background: var(--mp-primary);
    border-color: var(--mp-primary);
}

.btn-primary:hover {
    background: var(--mp-primary-hover);
    border-color: var(--mp-primary-hover);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-outline-primary {
    border-width: 1.5px;
    color: var(--mp-primary);
}

.btn-outline-primary:hover {
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

.btn-success {
    background: var(--mp-success);
    border-color: var(--mp-success);
}

.btn-lg {
    border-radius: var(--mp-radius);
    padding: 0.65rem 1.5rem;
    font-weight: 600;
}

/* ===== Forms ===== */
.form-control, .form-select {
    border-radius: var(--mp-radius);
    border: 1.5px solid var(--mp-border);
    font-size: 0.875rem;
    padding: 0.55rem 0.875rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background-color: #fff;
}

.form-control:focus, .form-select:focus {
    border-color: var(--mp-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-label {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--mp-dark-soft);
    margin-bottom: 0.4rem;
}

.form-text {
    font-size: 0.8rem;
    color: var(--mp-text-muted);
}

/* ===== Alerts ===== */
.alert {
    border-radius: var(--mp-radius);
    font-size: 0.875rem;
    border: none;
}

/* ===== Filter Card ===== */
form.card {
    border-radius: var(--mp-radius);
    border: 1px solid var(--mp-border);
    box-shadow: none;
    background: #fff;
}

form.card .card-body {
    padding: 0.875rem 1.25rem;
}

form.card .form-control-sm,
form.card .form-select-sm {
    border-radius: 8px;
    font-size: 0.8125rem;
}

/* ===== Tabs ===== */
.nav-tabs {
    border-bottom: 2px solid var(--mp-border);
    gap: 0.25rem;
}

.nav-tabs .nav-link {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--mp-text-muted);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.6rem 1rem;
    margin-bottom: -2px;
    border-radius: 0;
    transition: all 0.15s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--mp-primary);
    border-bottom-color: var(--mp-primary-light);
    background: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--mp-primary);
    border-bottom-color: var(--mp-primary);
    background: transparent;
    font-weight: 600;
}

/* ===== Marche Detail - TOC ===== */
.marche-toc {
    background: var(--mp-light);
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.marche-toc-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mp-text-muted);
    margin-bottom: 0.5rem;
}

.marche-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
}

.marche-toc-list li a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mp-primary);
    text-decoration: none;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    transition: background 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.marche-toc-list li a:hover {
    background: var(--mp-primary-light);
}

.marche-toc-list li a i {
    font-size: 0.75rem;
    opacity: 0.6;
}

.marche-toc-lots {
    list-style: none;
    padding: 0;
    margin: 0.35rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0.35rem;
}

.marche-toc-lots li a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--mp-text-muted);
    text-decoration: none;
    padding: 0.15rem 0.4rem;
    border: 1px solid var(--mp-border);
    border-radius: 5px;
    transition: all 0.15s ease;
}

.marche-toc-lots li a:hover {
    color: var(--mp-primary);
    border-color: var(--mp-primary-light);
    background: var(--mp-primary-subtle);
}

/* Smooth scroll + offset for anchors below navbar */
html {
    scroll-behavior: smooth;
}

.marche-detail [id] {
    scroll-margin-top: 80px;
}

/* ===== Marche Detail ===== */
.marche-detail .card {
    border-radius: var(--mp-radius-lg);
    border: 1px solid var(--mp-border);
    box-shadow: var(--mp-shadow);
}

.marche-detail .card > .card-body {
    padding: 2rem;
}

.marche-resume {
    background: var(--mp-primary-subtle);
    border-left: 4px solid var(--mp-primary);
    border-radius: 0 var(--mp-radius) var(--mp-radius) 0;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.marche-resume p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--mp-dark-soft);
    margin: 0;
}

.marche-meta .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4em 0.75em;
    border-radius: 6px;
}

.marche-section-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--mp-dark);
    border-left: 3px solid var(--mp-primary);
    padding-left: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
    text-transform: uppercase;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
}

.marche-section-title i {
    color: var(--mp-primary);
}

.marche-subsection {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--mp-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.marche-detail table.table th {
    color: var(--mp-text-muted);
    font-weight: 500;
    font-size: 0.8125rem;
    white-space: nowrap;
    vertical-align: top;
    width: 180px;
    padding: 0.4rem 0.75rem;
}

.marche-detail table.table td {
    font-size: 0.8125rem;
    padding: 0.4rem 0.75rem;
}

.marche-detail .lot-card {
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius);
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.marche-detail .lot-card .card-header {
    background: var(--mp-light);
    border-bottom: 1px solid var(--mp-border);
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
}

.marche-detail .org-card {
    border: 1px solid var(--mp-border);
    border-radius: var(--mp-radius);
    padding: 0.875rem 1.125rem;
    margin-bottom: 0.5rem;
    background: var(--mp-light);
}

.marche-detail .org-card h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mp-dark);
}

.marche-detail .info-box {
    background: var(--mp-primary-subtle);
    border-left: 3px solid var(--mp-primary);
    padding: 0.875rem 1.125rem;
    border-radius: 0 var(--mp-radius) var(--mp-radius) 0;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
    color: var(--mp-dark-soft);
    line-height: 1.6;
}

.marche-detail .deadline-badge {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
}

.marche-actions .btn {
    border-radius: var(--mp-radius);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ===== Progress Bar ===== */
.progress {
    border-radius: 50rem;
    background: var(--mp-border-light);
}

.progress-bar {
    border-radius: 50rem;
}

/* ===== Footer ===== */
footer {
    background: #fff;
    border-top: 1px solid var(--mp-border) !important;
    padding: 1.5rem 0;
}

footer a {
    color: var(--mp-text-muted) !important;
    text-decoration: none;
    transition: color 0.15s ease;
}

footer a:hover {
    color: var(--mp-primary) !important;
}

/* ===== Focus ===== */
a:focus-visible {
    outline: 2px solid var(--mp-primary);
    outline-offset: 2px;
}

/* ===== Favoris ===== */
.favoris-card {
    border-radius: var(--mp-radius);
}

.favoris-card .card-body {
    padding: 1rem 1.25rem;
}

.favoris-card h6 a {
    color: var(--mp-text);
    text-decoration: none;
    font-weight: 600;
}

.favoris-card h6 a:hover {
    color: var(--mp-primary);
}

/* ===== Empty States ===== */
.empty-state-icon {
    font-size: 3rem;
    opacity: 0.3;
}

/* ===== Infinite Scroll ===== */
#feed-spinner {
    padding: 2rem 0;
}

#feed-end {
    padding: 1rem 0 2rem;
}

/* New cards fade in */
@keyframes feedCardIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

#feed-list > .col-12 {
    animation: feedCardIn 0.3s ease both;
}

/* ===== Promo Sidebar ===== */
.promo-sidebar {
    background: linear-gradient(180deg, var(--mp-primary-subtle) 0%, #fff 60%);
    border: 1.5px solid var(--mp-primary-light);
}

.promo-sidebar .btn-primary {
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* ===== Onboarding Modal ===== */
.domain-chip {
    border-radius: 50rem;
    font-size: 0.8rem;
    padding: 0.3rem 0.85rem;
    transition: all 0.15s ease;
    font-weight: 500;
}

.domain-chip:hover {
    transform: scale(1.05);
}

.domain-chip.active {
    transform: scale(1.05);
}

#domainModal .modal-content,
#authPromptModal .modal-content,
#registerForceModal .modal-content {
    border: none;
    border-radius: var(--mp-radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#registerForceModal .modal-body {
    background: linear-gradient(180deg, var(--mp-primary-subtle) 0%, #fff 40%);
    border-radius: var(--mp-radius-lg);
}

/* ===== Blog ===== */
.blog-card {
    transition: all 0.25s ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow-lg);
    border-color: var(--mp-primary-light);
}

.blog-card-img {
    height: 180px;
    object-fit: cover;
}

.blog-card-img-placeholder {
    height: 180px;
    background: linear-gradient(135deg, var(--mp-primary-subtle) 0%, var(--mp-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--mp-primary);
    opacity: 0.5;
}

.blog-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.4;
    color: var(--mp-text);
}

.blog-card a:hover .blog-card-title {
    color: var(--mp-primary);
}

.blog-article-title {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--mp-dark);
}

.blog-article-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-top: 1.5rem;
}

.blog-article-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--mp-text);
}

.blog-article-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--mp-dark);
    border-left: 3px solid var(--mp-primary);
    padding-left: 0.75rem;
}

.blog-article-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--mp-dark-soft);
}

.blog-article-content p {
    margin-bottom: 1.25rem;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.blog-article-content ol {
    counter-reset: item;
}

.blog-article-content ul > li,
.blog-article-content ol > li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.65rem;
    line-height: 1.7;
}

.blog-article-content ul > li::before {
    content: '';
    position: absolute;
    left: 0.25rem;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--mp-primary);
    border-radius: 50%;
}

.blog-article-content ol > li {
    counter-increment: item;
}

.blog-article-content ol > li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0.05rem;
    width: 1.35rem;
    height: 1.35rem;
    background: var(--mp-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-article-content li strong {
    color: var(--mp-dark);
}

/* Nested lists */
.blog-article-content li ul,
.blog-article-content li ol {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.blog-article-content li ul > li::before {
    width: 5px;
    height: 5px;
    background: var(--mp-text-muted);
}

.blog-article-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
    font-size: 0.875rem;
    border-radius: var(--mp-radius);
    overflow: hidden;
    border: 1px solid var(--mp-border);
    box-shadow: var(--mp-shadow-sm);
}

.blog-article-content table th,
.blog-article-content table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--mp-border);
    text-align: left;
    vertical-align: top;
}

.blog-article-content table th {
    background: var(--mp-dark);
    color: #fff;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: none;
}

.blog-article-content table tr:nth-child(even) {
    background: var(--mp-light);
}

.blog-article-content table tr:hover {
    background: var(--mp-primary-subtle);
}

.blog-article-content table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .blog-article-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.blog-article-content blockquote {
    background: var(--mp-primary-subtle);
    border-left: 4px solid var(--mp-primary);
    border-radius: 0 var(--mp-radius) var(--mp-radius) 0;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    font-style: normal;
    color: var(--mp-dark-soft);
}

.blog-article-content strong {
    color: var(--mp-dark);
}

.breadcrumb-item a {
    color: var(--mp-primary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem;
    }

    .hero-section .display-4 {
        font-size: 1.75rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    main.container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .marche-detail .card > .card-body {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .feed-card .card-body > .d-flex {
        flex-direction: column;
    }

    .feed-card .feed-actions {
        margin-left: 0 !important;
        margin-top: 0.75rem;
        flex-direction: row !important;
        justify-content: flex-start;
    }

    .navbar .nav-link {
        margin-left: 0;
        padding: 0.5rem 0.75rem !important;
    }
}
