/* ============================================================
   YalpDev.com — TANGA
   Identité : Orange / Navy / Blanc
============================================================ */

:root {
    --orange: #ee812c;
    --orange-dark: #d96d1d;
    --navy: #0f172a;
    --navy-light: #1e293b;

    --white: #ffffff;
    --background: #f8fafc;
    --surface: #ffffff;

    --text: #172033;
    --text-soft: #64748b;
    --border: #e5e7eb;

    --radius: 14px;
    --shadow: 0 8px 30px rgba(15, 23, 42, 0.07);

    --container: 1180px;
}


/* ============================================================
   RESET
============================================================ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: var(--background);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* ============================================================
   HEADER
============================================================ */

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(12px);
}

.navbar-container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    min-height: 76px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* LOGO */

.navbar-brand {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: var(--navy);

    font-size: 21px;
    font-weight: 800;

    white-space: nowrap;
}

.navbar-brand span {
    color: var(--navy);
}

.navbar-brand span span {
    color: var(--orange);
}

.brand-logo {
    width: 34px;
    height: 34px;

    object-fit: contain;

    flex-shrink: 0;
}


/* DESKTOP MENU */

.desktop-navigation {
    display: flex;
    align-items: center;
    gap: 4px;
}

.desktop-link {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 7px;

    padding: 10px 13px;

    color: #475569;

    font-size: 15px;
    font-weight: 600;

    border-radius: 9px;

    transition:
        color .2s ease,
        background .2s ease;
}

.desktop-link:hover {
    color: var(--orange);
    background: #fff7f0;
}

.desktop-link.active {
    color: var(--orange);
    background: #fff7f0;
}

.desktop-link i {
    font-size: 16px;
}


/* CONNEXION */

.login-button {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-left: 7px;

    padding: 10px 16px;

    border: 0;
    border-radius: 9px;

    background: var(--orange);
    color: white;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.login-button:hover {
    background: var(--orange-dark);
    color: white;

    transform: translateY(-1px);
}


/* MOBILE BUTTON */

.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: white;
    color: var(--navy);

    align-items: center;
    justify-content: center;

    font-size: 23px;

    cursor: pointer;
}


/* ============================================================
   MOBILE MENU
============================================================ */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;

    z-index: 1090;

    background: rgba(15, 23, 42, .45);

    opacity: 0;
    visibility: hidden;

    transition: .25s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-side-menu {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 1100;

    width: min(88%, 360px);
    height: 100vh;

    background: white;

    transform: translateX(100%);

    transition: transform .3s ease;

    box-shadow: -15px 0 40px rgba(15, 23, 42, .15);

    display: flex;
    flex-direction: column;
}

.mobile-side-menu.open {
    transform: translateX(0);
}

.mobile-side-header {
    min-height: 76px;

    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 19px;
    font-weight: 800;
}

.mobile-brand img {
    width: 32px;
    height: 32px;

    object-fit: contain;
}

.mobile-brand span {
    color: var(--orange);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 8px;

    background: #f1f5f9;
    color: var(--navy);

    cursor: pointer;
}

.mobile-navigation {
    padding: 15px;

    display: flex;
    flex-direction: column;

    gap: 5px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px;

    border-radius: 10px;

    color: #475569;

    font-size: 16px;
    font-weight: 600;
}

.mobile-nav-link > i:first-child {
    width: 22px;
    color: var(--orange);
}

.mobile-nav-link > i:last-child {
    margin-left: auto;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: #fff7f0;
    color: var(--orange);
}

.mobile-login-area {
    margin-top: auto;
    padding: 20px;

    border-top: 1px solid var(--border);
}

.mobile-login-button {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 13px;

    border: 0;
    border-radius: 9px;

    background: var(--orange);
    color: white;

    font-size: 15px;
    font-weight: 700;
}


/* ============================================================
   BREADCRUMB
============================================================ */

.breadcrumb-section {
    border-bottom: 1px solid var(--border);
    background: white;
}

.breadcrumb {
    min-height: 48px;

    display: flex;
    align-items: center;

    gap: 8px;

    overflow: hidden;

    white-space: nowrap;

    font-size: 14px;
    color: var(--text-soft);
}

.breadcrumb a {
    color: var(--orange);
    font-weight: 600;
}

.breadcrumb i {
    font-size: 11px;
    color: #94a3b8;
}

.breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ============================================================
   ARTICLE PAGE
============================================================ */

.article-page {
    padding: 48px 0 70px;
}

.article-header-grid {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 240px;

    gap: 35px;

    align-items: end;

    margin-bottom: 35px;
}

.article-category-label {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 14px;

    color: var(--orange);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .08em;
}

.article-header-main h1 {
    max-width: 900px;

    margin: 0;

    color: var(--navy);

    font-size: clamp(32px, 5vw, 46px);
    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1px;
}

.article-excerpt {
    max-width: 820px;

    margin: 20px 0 0;

    color: var(--text-soft);

    font-size: 17px;

    line-height: 1.75;
}


/* META */

.article-meta-row {
    margin-top: 25px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;
}

.author-mini {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-mini img {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    object-fit: cover;
}

.author-mini div {
    display: flex;
    flex-direction: column;
}

.author-mini strong {
    font-size: 13px;
    color: var(--navy);
}

.author-mini span {
    color: var(--text-soft);
    font-size: 12px;
}

.meta-item {
    display: flex;
    align-items: center;

    gap: 6px;

    color: var(--text-soft);

    font-size: 13px;
}

.meta-item i {
    color: var(--orange);
}


/* SHARE */

.share-box {
    padding: 17px;

    background: white;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.share-box > span {
    display: block;

    margin-bottom: 10px;

    color: var(--text-soft);

    font-size: 13px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 7px;
}

.share-buttons a,
.share-buttons button {
    width: 37px;
    height: 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;

    color: white;

    cursor: pointer;

    transition: transform .2s ease;
}

.share-buttons a:hover,
.share-buttons button:hover {
    transform: translateY(-2px);
}

.share-facebook {
    background: #1877f2;
}

.share-twitter {
    background: #111827;
}

.share-linkedin {
    background: #0a66c2;
}

.share-whatsapp {
    background: #25d366;
}

.share-copy {
    background: var(--orange);
}


/* ============================================================
   LAYOUT
============================================================ */

.article-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        320px;

    gap: 35px;

    align-items: start;
}


/* ============================================================
   ARTICLE CONTENT
============================================================ */

.article-content-area {
    min-width: 0;
}

.article-featured-image {
    margin: 0 0 30px;

    overflow: hidden;

    border-radius: 16px;

    background: #e2e8f0;

    box-shadow: var(--shadow);
}

.article-featured-image img {
    width: 100%;

    max-height: 520px;

    object-fit: cover;
}


.article-content {
    background: white;

    padding: clamp(24px, 4vw, 42px);

    border: 1px solid var(--border);
    border-radius: 16px;

    font-size: 16px;
    line-height: 1.85;
}

.article-content h2 {
    margin-top: 35px;
    margin-bottom: 14px;

    color: var(--navy);

    font-size: 25px;
    line-height: 1.3;
}

.article-content h3 {
    margin-top: 28px;

    color: var(--navy);

    font-size: 20px;
}

.article-content p {
    margin-bottom: 18px;
}

.article-content img {
    width: 100%;
    height: auto;

    margin: 25px 0;

    border-radius: 10px;
}

.article-content a {
    color: var(--orange);
    font-weight: 600;
}

.article-content blockquote {
    margin: 25px 0;

    padding: 20px;

    border-left: 4px solid var(--orange);

    background: #fff7f0;

    border-radius: 0 10px 10px 0;
}

.article-content pre {
    overflow-x: auto;

    padding: 18px;

    border-radius: 10px;

    background: var(--navy);
    color: white;

    font-size: 14px;
}

.article-content code {
    font-size: .92em;
}


/* ============================================================
   TAGS
============================================================ */

.article-tags {
    margin-top: 25px;

    padding: 20px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 14px;
}

.article-tags > strong {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 12px;

    color: var(--navy);

    font-size: 15px;
}

.article-tags > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.article-tags a,
.sidebar-tags a {
    display: inline-block;

    padding: 5px 10px;

    border-radius: 999px;

    background: #fff7f0;

    color: var(--orange);

    font-size: 13px;
    font-weight: 600;
}


/* ============================================================
   AUTHOR
============================================================ */

.author-box {
    margin-top: 25px;

    display: flex;

    gap: 20px;

    padding: 25px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 14px;
}

.author-box > img {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    border-radius: 50%;

    object-fit: cover;
}

.author-box-content > span {
    color: var(--orange);

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
}

.author-box-content h3 {
    margin: 4px 0;

    color: var(--navy);

    font-size: 19px;
}

.author-box-content p {
    margin: 0;

    color: var(--text-soft);

    font-size: 15px;
}


/* ============================================================
   COMMENTS
============================================================ */

.comments-section {
    margin-top: 40px;
}

.comments-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 20px;
}

.comments-heading h2 {
    margin: 0;

    color: var(--navy);

    font-size: 22px;
}

.comments-heading select {
    padding: 8px 10px;

    border: 1px solid var(--border);
    border-radius: 8px;

    background: white;

    color: var(--text);

    font-size: 13px;
}


/* FORM */

.comment-form-box {
    display: flex;
    gap: 13px;

    padding: 18px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 14px;
}

.comment-current-avatar {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange);
    color: white;

    font-weight: 800;
}

.comment-form-content {
    flex: 1;
}

.comment-form-content textarea {
    width: 100%;

    resize: vertical;

    min-height: 80px;

    padding: 12px;

    border: 1px solid var(--border);
    border-radius: 9px;

    outline: none;

    font-size: 15px;
}

.comment-form-content textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(238, 129, 44, .1);
}

.comment-form-actions {
    margin-top: 9px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#replyIndicator {
    color: var(--text-soft);
    font-size: 13px;
}

.publish-comment {
    padding: 9px 16px;

    border: 0;
    border-radius: 8px;

    background: var(--orange);
    color: white;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}


/* COMMENT ITEM */

.comment-item {
    display: flex;

    gap: 13px;

    margin-top: 18px;

    padding: 18px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 12px;
}

.comment-reply {
    margin-left: 45px;

    background: #fafafa;
}

.comment-avatar img {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    object-fit: cover;
}

.comment-body {
    min-width: 0;
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-header strong {
    color: var(--navy);
    font-size: 14px;
}

.comment-header span {
    color: #94a3b8;
    font-size: 12px;
}

.comment-text {
    margin-top: 7px;

    color: #475569;

    font-size: 15px;

    line-height: 1.65;
}

.comment-actions {
    display: flex;
    gap: 12px;

    margin-top: 8px;
}

.reply-button,
.comment-like-button {
    border: 0;
    padding: 0;

    background: transparent;

    color: var(--text-soft);

    font-size: 12px;

    cursor: pointer;
}

.reply-button:hover,
.comment-like-button:hover {
    color: var(--orange);
}

.comments-empty {
    margin-top: 20px;

    padding: 45px 20px;

    text-align: center;

    background: white;

    border: 1px solid var(--border);
    border-radius: 14px;
}

.comments-empty > div {
    width: 55px;
    height: 55px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff7f0;

    color: var(--orange);

    font-size: 22px;
}

.comments-empty h3 {
    margin: 15px 0 5px;

    font-size: 18px;
}

.comments-empty p {
    margin: 0;

    color: var(--text-soft);

    font-size: 14px;
}


/* ============================================================
   SIDEBAR
============================================================ */

.article-sidebar {
    position: sticky;
    top: 95px;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.sidebar-card {
    padding: 20px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 14px;

    box-shadow: 0 4px 18px rgba(15, 23, 42, .04);
}

.sidebar-card h2 {
    margin: 0;

    color: var(--navy);

    font-size: 18px;
    line-height: 1.4;
}

.sidebar-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 15px;
}

.sidebar-card-heading a {
    color: var(--orange);

    font-size: 12px;
    font-weight: 700;
}

.toc-card h2 {
    display: flex;
    align-items: center;
    gap: 7px;
}

.toc-card nav {
    margin-top: 15px;
}

.toc-card nav a {
    display: block;

    padding: 7px 0;

    color: var(--text-soft);

    font-size: 13px;

    border-bottom: 1px solid #f1f5f9;
}

.toc-card nav a:hover {
    color: var(--orange);
}

.toc-loading {
    margin: 12px 0 0;

    color: var(--text-soft);

    font-size: 13px;
}

.summary-card .sidebar-icon {
    width: 38px;
    height: 38px;

    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #fff7f0;
    color: var(--orange);
}

.summary-card p {
    margin: 10px 0 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.7;
}


/* RELATED */

.related-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-item {
    display: flex;

    gap: 10px;
}

.related-item img {
    width: 70px;
    height: 55px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 7px;
}

.related-item strong {
    display: block;

    color: var(--navy);

    font-size: 13px;

    line-height: 1.4;
}

.related-item span {
    display: block;

    margin-top: 4px;

    color: var(--text-soft);

    font-size: 11px;
}


/* CATEGORIES */

.sidebar-category-list {
    display: flex;
    flex-direction: column;
}

.sidebar-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 9px 0;

    border-bottom: 1px solid #f1f5f9;

    color: var(--text-soft);

    font-size: 14px;
}

.sidebar-category-list a span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-category-list i {
    color: var(--orange);
}

.sidebar-category-list strong {
    font-size: 12px;
    color: var(--navy);
}

.sidebar-empty {
    margin: 10px 0 0;

    color: var(--text-soft);

    font-size: 13px;
}


/* TAGS */

.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 12px;
}


/* DON */

.sidebar-donation {
    padding: 24px;

    border-radius: 15px;

    background: var(--navy);

    color: white;
}

.donation-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 13px;

    border-radius: 10px;

    background: rgba(238, 129, 44, .15);

    color: var(--orange);
}

.sidebar-donation > span {
    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .08em;
}

.sidebar-donation h2 {
    margin: 9px 0;

    color: white;

    font-size: 19px;
}

.sidebar-donation p {
    color: #cbd5e1;

    font-size: 13px;
    line-height: 1.65;
}

.sidebar-donation > a {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 9px;

    padding: 10px;

    border-radius: 8px;

    background: var(--orange);
    color: white;

    font-size: 13px;
    font-weight: 700;
}

.sidebar-donation .donation-more {
    background: transparent;

    border: 1px solid rgba(255,255,255,.2);
}


/* ============================================================
   SUPPORT
============================================================ */

.article-support {
    padding: 0 0 60px;
}

.support-card {
    display: flex;
    align-items: center;

    gap: 20px;

    padding: 28px;

    background: white;

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: var(--shadow);
}

.support-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #fff7f0;

    color: var(--orange);

    font-size: 21px;
}

.support-content {
    flex: 1;
}

.support-content > span {
    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .08em;
}

.support-content h2 {
    margin: 4px 0;

    color: var(--navy);

    font-size: 20px;
}

.support-content p {
    margin: 0;

    color: var(--text-soft);

    font-size: 14px;
}

.support-actions {
    display: flex;
    flex-direction: column;
    gap: 7px;

    min-width: 180px;
}

.support-actions a {
    padding: 10px 14px;

    text-align: center;

    border-radius: 8px;

    background: var(--orange);
    color: white;

    font-size: 13px;
    font-weight: 700;
}

.support-actions a.outline {
    background: white;

    border: 1px solid var(--orange);

    color: var(--orange);
}


/* ============================================================
   FOOTER
============================================================ */

.main-footer {
    padding: 55px 0 25px;

    background: var(--navy);

    color: #cbd5e1;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 40px;
}

.footer-brand {
    display: inline-block;

    margin-bottom: 10px;

    color: white;

    font-size: 22px;
    font-weight: 800;
}

.footer-brand span {
    color: var(--orange);
}

.footer-brand-column p {
    max-width: 330px;

    color: #94a3b8;

    font-size: 14px;
}

.footer-socials {
    display: flex;
    gap: 7px;

    margin-top: 15px;
}

.footer-socials a {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: rgba(255,255,255,.06);

    color: white;

    transition: .2s;
}

.footer-socials a:hover {
    background: var(--orange);
}

.footer-grid h4 {
    margin: 0 0 13px;

    color: white;

    font-size: 15px;
}

.footer-grid > div:not(.footer-brand-column) {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-grid > div:not(.footer-brand-column) a {
    color: #94a3b8;

    font-size: 13px;
}

.footer-grid > div:not(.footer-brand-column) a:hover {
    color: var(--orange);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 18px;

    display: flex;
    justify-content: space-between;

    gap: 15px;

    border-top: 1px solid rgba(255,255,255,.08);

    color: #64748b;

    font-size: 12px;
}

.footer-bottom i {
    color: var(--orange);
}


/* ============================================================
   LOGIN MODAL
============================================================ */

.login-modal {
    border: 0;
    border-radius: 15px;
    overflow: hidden;
}

.login-modal .modal-header {
    padding: 22px;

    border-bottom: 1px solid var(--border);
}

.login-modal h2 {
    margin: 5px 0 0;

    color: var(--navy);

    font-size: 22px;
}

.section-label {
    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .08em;
}

.login-intro {
    color: var(--text-soft);

    font-size: 14px;
}

.modal-login-link,
.modal-register-link {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 12px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;
}

.modal-login-link {
    background: var(--orange);
    color: white;
}

.modal-register-link {
    margin-top: 8px;

    border: 1px solid var(--border);

    color: var(--navy);
}


/* ============================================================
   NOT FOUND
============================================================ */

.not-found-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
}

.not-found-card {
    width: min(100%, 500px);

    padding: 45px 30px;

    text-align: center;

    background: white;

    border: 1px solid var(--border);
    border-radius: 16px;

    box-shadow: var(--shadow);
}

.not-found-icon {
    width: 70px;
    height: 70px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff7f0;

    color: var(--orange);

    font-size: 30px;
}

.not-found-card h1 {
    margin-bottom: 10px;

    color: var(--navy);

    font-size: 28px;
}

.not-found-card p {
    color: var(--text-soft);

    font-size: 15px;
}

.not-found-button {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-top: 12px;

    padding: 11px 17px;

    border-radius: 8px;

    background: var(--orange);
    color: white;

    font-size: 14px;
    font-weight: 700;
}


/* ============================================================
   TOAST
============================================================ */

.site-toast {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 2000;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 12px 16px;

    border-radius: 9px;

    background: var(--navy);
    color: white;

    box-shadow: var(--shadow);

    font-size: 13px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: .25s ease;
}

.site-toast.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.site-toast i {
    color: #4ade80;
}


/* ============================================================
   RESPONSIVE
============================================================ */

@media (max-width: 1050px) {

    .desktop-link {
        padding-left: 9px;
        padding-right: 9px;
    }

    .article-layout {
        grid-template-columns:
            minmax(0, 1fr)
            280px;
    }

}


@media (max-width: 900px) {

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .article-header-grid {
        grid-template-columns: 1fr;
    }

    .share-box {
        max-width: 280px;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

}


@media (max-width: 700px) {

    .navbar-container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );

        min-height: 68px;
    }

    .navbar-brand {
        font-size: 19px;
    }

    .brand-logo {
        width: 31px;
        height: 31px;
    }

    .article-page {
        padding-top: 30px;
    }

    .article-header-main h1 {
        font-size: clamp(30px, 8vw, 38px);

        letter-spacing: -.6px;
    }

    .article-excerpt {
        font-size: 16px;
    }

    .article-meta-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .article-content {
        padding: 22px 18px;
    }

    .article-content {
        font-size: 16px;
    }

    .support-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .support-actions {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-column {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }

}


@media (max-width: 480px) {

    .breadcrumb {
        font-size: 13px;
    }

    .article-featured-image {
        border-radius: 11px;
    }

    .article-content {
        border-radius: 11px;
    }

    .author-box {
        flex-direction: column;
    }

    .comment-form-box {
        padding: 13px;
    }

    .comment-item {
        padding: 13px;
    }

    .comment-reply {
        margin-left: 18px;
    }

    .comments-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .comments-heading select {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand-column {
        grid-column: auto;
    }

    .share-box {
        max-width: none;
    }

}