/* =========================================================
   YALPDEV.COM — BLOG
   Identité : Orange #ee812c / Navy #0f172a
========================================================= */

:root {
    --orange: #ee812c;
    --orange-dark: #d96f20;
    --orange-light: #fff3e9;

    --navy: #0f172a;
    --navy-soft: #172033;

    --text: #18202f;
    --muted: #64748b;

    --white: #ffffff;
    --background: #f7f8fa;

    --border: #e5e7eb;

    --shadow-sm:
        0 6px 20px rgba(15, 23, 42, .06);

    --shadow-md:
        0 14px 35px rgba(15, 23, 42, .10);

    --radius: 15px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--background);

    color: var(--text);

    font-family: "Inter", sans-serif;

    font-size: 15px;

    line-height: 1.65;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;

    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    max-width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.main-navbar {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background:
        rgba(15, 23, 42, .98);

    border-bottom:
        1px solid rgba(255,255,255,.07);

    box-shadow:
        0 5px 22px rgba(0,0,0,.12);
}

.navbar-container {
    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    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: 10px;

    color: #fff;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: -.5px;

    white-space: nowrap;
}

.brand-logo {
    width: 38px;

    height: 38px;

    object-fit: contain;

    flex-shrink: 0;
}

.navbar-brand > span > span {
    color: var(--orange);
}


/* DESKTOP MENU */

.desktop-navigation {
    display: flex;

    align-items: center;

    gap: 4px;
}

.desktop-link {
    position: relative;

    min-height: 44px;

    padding: 8px 13px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    border-radius: 9px;

    color:
        rgba(255,255,255,.76);

    font-size: 15px;

    font-weight: 600;

    transition:
        color .2s ease,
        background .2s ease;
}

.desktop-link i {
    font-size: 16px;
}

.desktop-link:hover {
    color: #fff;

    background:
        rgba(255,255,255,.06);
}

.desktop-link.active {
    color: #fff;
}

.desktop-link.active::after {
    content: "";

    position: absolute;

    left: 12px;

    right: 12px;

    bottom: 1px;

    height: 3px;

    border-radius: 20px;

    background: var(--orange);
}


/* LOGIN */

.login-button {
    min-height: 44px;

    padding: 8px 17px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border:
        1px solid var(--orange);

    border-radius: 10px;

    background: var(--orange);

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition:
        background .2s ease,
        transform .2s ease;
}

.login-button:hover {
    background: var(--orange-dark);

    color: #fff;

    transform:
        translateY(-1px);
}


/* MOBILE BUTTON */

.mobile-menu-button {
    display: none;

    width: 45px;

    height: 45px;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 10px;

    background:
        rgba(255,255,255,.06);

    color: #fff;

    font-size: 24px;

    cursor: pointer;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-overlay {
    position: fixed;

    inset: 0;

    z-index: 1080;

    background:
        rgba(2,6,23,.62);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.mobile-side-menu {
    position: fixed;

    top: 0;

    right: 0;

    z-index: 1090;

    width:
        min(
            390px,
            82vw
        );

    height: 100dvh;

    padding: 22px;

    background: #fff;

    box-shadow:
        -20px 0 50px
        rgba(0,0,0,.18);

    transform:
        translateX(105%);

    transition:
        transform .32s
        cubic-bezier(.22,.61,.36,1);

    overflow-y: auto;
}

body.menu-open
.mobile-menu-overlay {
    opacity: 1;

    visibility: visible;
}

body.menu-open
.mobile-side-menu {
    transform:
        translateX(0);
}


/* MOBILE HEADER */

.mobile-side-header {
    min-height: 58px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-bottom: 18px;

    border-bottom:
        1px solid var(--border);
}

.mobile-brand {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--navy);

    font-size: 19px;

    font-weight: 800;
}

.mobile-brand img {
    width: 36px;

    height: 36px;

    object-fit: contain;
}

.mobile-brand > span > span {
    color: var(--orange);
}

.mobile-menu-close {
    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background: #fff;

    color: var(--navy);

    cursor: pointer;
}


/* NAV MOBILE */

.mobile-navigation {
    display: flex;

    flex-direction: column;

    gap: 6px;

    padding: 24px 0;
}

.mobile-nav-link {
    min-height: 56px;

    display: grid;

    grid-template-columns:
        30px 1fr 18px;

    align-items: center;

    gap: 12px;

    padding: 10px 14px;

    border-radius: 12px;

    color: var(--text);

    font-size: 15px;

    font-weight: 600;

    transition:
        background .2s ease,
        color .2s ease;
}

.mobile-nav-icon {
    display: flex;

    justify-content: center;

    color: var(--orange);

    font-size: 18px;
}

.mobile-nav-arrow {
    color: #94a3b8;

    font-size: 12px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--orange-light);

    color: var(--orange-dark);
}

.mobile-login-area {
    padding-top: 15px;

    border-top:
        1px solid var(--border);
}

.mobile-login-button {
    width: 100%;

    min-height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border: 0;

    border-radius: 10px;

    background: var(--orange);

    color: #fff;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.breadcrumb-section {
    background: #fff;

    border-bottom:
        1px solid var(--border);
}

.custom-breadcrumb {
    min-height: 58px;

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--muted);

    font-size: 13px;
}

.custom-breadcrumb a {
    color: var(--orange-dark);

    font-weight: 600;
}

.custom-breadcrumb i {
    color: #a5adba;

    font-size: 10px;
}


/* =========================================================
   HERO
========================================================= */

.blog-hero {
    padding: 60px 0;

    background: var(--navy);

    overflow: hidden;
}

.blog-hero-inner {
    min-height: 330px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        390px;

    align-items: center;

    gap: 50px;
}

.blog-hero-content {
    max-width: 690px;
}

.section-label {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .08em;
}

.blog-hero h1 {
    margin: 12px 0 15px;

    color: #fff;

    font-size:
        clamp(
            34px,
            5vw,
            52px
        );

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -.9px;
}

.blog-hero p {
    max-width: 670px;

    margin: 0;

    color:
        rgba(255,255,255,.66);

    font-size: 16px;

    line-height: 1.75;
}

.hero-mini-stats {
    margin-top: 28px;

    display: flex;

    gap: 30px;
}

.hero-mini-stats > div {
    display: flex;

    flex-direction: column;
}

.hero-mini-stats strong {
    color: #fff;

    font-size: 24px;

    line-height: 1.2;

    font-weight: 800;
}

.hero-mini-stats span {
    color:
        rgba(255,255,255,.5);

    font-size: 12px;
}


/* HERO VISUAL */

.blog-hero-visual {
    position: relative;

    width: 350px;

    height: 280px;

    margin: auto;
}

.hero-visual-main {
    position: absolute;

    left: 90px;

    top: 55px;

    width: 175px;

    height: 175px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(238,129,44,.35);

    border-radius: 30px;

    background:
        rgba(255,255,255,.05);

    color: var(--orange);

    font-size: 70px;

    transform:
        rotate(-4deg);
}

.hero-visual-card {
    position: absolute;

    z-index: 2;

    min-width: 105px;

    padding: 13px;

    display: flex;

    align-items: center;

    gap: 8px;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 11px;

    background:
        rgba(255,255,255,.08);

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    backdrop-filter: blur(8px);
}

.hero-visual-card i {
    color: var(--orange);

    font-size: 17px;
}

.card-one {
    top: 25px;

    left: 20px;
}

.card-two {
    right: 15px;

    bottom: 25px;
}

.hero-code {
    position: absolute;

    right: 42px;

    top: 43px;

    color:
        rgba(238,129,44,.55);

    font-size: 26px;

    font-weight: 800;
}


/* =========================================================
   MAIN
========================================================= */

.blog-main {
    padding: 40px 0 55px;
}


/* CATEGORY FILTER */

.category-filter-card {
    padding: 7px;

    border:
        1px solid var(--border);

    border-radius: 13px;

    background: #fff;

    box-shadow: var(--shadow-sm);
}

.category-scroll {
    display: flex;

    align-items: center;

    gap: 5px;

    overflow-x: auto;

    scrollbar-width: thin;
}

.category-filter {
    min-height: 40px;

    padding: 7px 13px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    flex-shrink: 0;

    border-radius: 8px;

    color: var(--muted);

    font-size: 13px;

    font-weight: 600;
}

.category-filter:hover {
    color: var(--orange-dark);

    background: var(--orange-light);
}

.category-filter.active {
    background: var(--orange);

    color: #fff;
}


/* SEARCH */

.blog-search-bar {
    margin: 18px 0 32px;

    min-height: 52px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 5px 6px 5px 15px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    background: #fff;

    box-shadow: var(--shadow-sm);
}

.blog-search-bar > i {
    color: #94a3b8;

    font-size: 17px;
}

.blog-search-bar input {
    min-width: 0;

    flex: 1;

    height: 40px;

    border: 0;

    outline: 0;

    color: var(--text);

    font-size: 14px;
}

.search-clear {
    width: 32px;

    height: 32px;

    display: grid;

    place-items: center;

    border-radius: 7px;

    color: #94a3b8;

    font-size: 12px;
}

.search-clear:hover {
    background: #f1f3f5;

    color: var(--orange);
}

.blog-search-bar button {
    min-height: 40px;

    padding: 7px 15px;

    border: 0;

    border-radius: 8px;

    background: var(--orange);

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    margin-bottom: 18px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;
}

.section-heading h2 {
    margin: 4px 0 0;

    color: var(--navy);

    font-size: 25px;

    line-height: 1.2;

    font-weight: 800;
}

.result-count {
    color: var(--muted);

    font-size: 12px;

    font-weight: 600;
}


/* =========================================================
   POSTS
========================================================= */

.posts-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.blog-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background: #fff;

    box-shadow: var(--shadow-sm);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.blog-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(238,129,44,.25);

    box-shadow: var(--shadow-md);
}

.blog-card-image {
    position: relative;

    display: block;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #e9edf2;
}

.blog-card-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .4s ease;
}

.blog-card:hover
.blog-card-image img {
    transform:
        scale(1.035);
}

.article-category {
    position: absolute;

    left: 12px;

    bottom: 12px;

    padding: 5px 9px;

    border-radius: 6px;

    background:
        rgba(15,23,42,.86);

    color: #fff;

    font-size: 10px;

    font-weight: 700;
}

.article-featured {
    position: absolute;

    top: 12px;

    right: 12px;

    padding: 5px 9px;

    display: inline-flex;

    align-items: center;

    gap: 5px;

    border-radius: 6px;

    background: var(--orange);

    color: #fff;

    font-size: 10px;

    font-weight: 800;
}


/* CARD BODY */

.blog-card-body {
    padding: 18px;
}

.article-meta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    color: #94a3b8;

    font-size: 11px;
}

.article-meta span:last-child {
    display: inline-flex;

    align-items: center;

    gap: 4px;
}

.blog-card h3 {
    margin: 8px 0 8px;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 800;
}

.blog-card h3 a {
    color: var(--navy);
}

.blog-card h3 a:hover {
    color: var(--orange-dark);
}

.blog-card-body > p {
    min-height: 68px;

    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.65;

    display: -webkit-box;

    overflow: hidden;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;
}


/* ARTICLE FOOTER */

.article-footer {
    margin-top: 17px;

    padding-top: 13px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    border-top:
        1px solid #eef0f3;
}

.article-author {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--muted);

    font-size: 11px;
}

.article-author img {
    width: 28px;

    height: 28px;

    flex: 0 0 28px;

    border-radius: 50%;

    object-fit: cover;
}

.article-author span {
    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}

.article-author strong {
    color: var(--navy);

    font-weight: 700;
}

.article-stats {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #94a3b8;

    font-size: 11px;
}

.article-stats span {
    display: inline-flex;

    align-items: center;

    gap: 3px;
}


/* =========================================================
   EMPTY
========================================================= */

.empty-state {
    padding: 60px 25px;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background: #fff;

    text-align: center;
}

.empty-icon {
    width: 62px;

    height: 62px;

    margin: auto;

    display: grid;

    place-items: center;

    border-radius: 15px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 25px;
}

.empty-state h3 {
    margin: 17px 0 6px;

    color: var(--navy);

    font-size: 19px;

    font-weight: 800;
}

.empty-state p {
    max-width: 450px;

    margin: auto;

    color: var(--muted);

    font-size: 13px;
}

.empty-button {
    display: inline-flex;

    margin-top: 18px;

    min-height: 42px;

    padding: 8px 14px;

    align-items: center;

    border-radius: 9px;

    background: var(--orange);

    color: #fff;

    font-size: 13px;

    font-weight: 700;
}


/* =========================================================
   PAGINATION
========================================================= */

.blog-pagination {
    margin-top: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;
}

.pagination-pages {
    display: flex;

    align-items: center;

    gap: 5px;
}

.pagination-button,
.pagination-page {
    min-width: 38px;

    height: 38px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 8px;

    background: #fff;

    color: var(--navy);

    font-size: 12px;

    font-weight: 700;
}

.pagination-button {
    padding: 0 11px;

    gap: 5px;
}

.pagination-button:hover,
.pagination-page:hover {
    border-color:
        rgba(238,129,44,.35);

    color: var(--orange-dark);
}

.pagination-page.active {
    border-color: var(--orange);

    background: var(--orange);

    color: #fff;
}

.pagination-dots {
    color: var(--muted);

    padding: 0 3px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar-card {
    margin-bottom: 17px;

    padding: 20px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background: #fff;

    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    margin: 0 0 15px;

    color: var(--navy);

    font-size: 17px;

    font-weight: 800;
}

.sidebar-title-row {
    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* SIDEBAR SEARCH */

.sidebar-search {
    display: flex;

    min-height: 43px;

    padding: 4px;

    border:
        1px solid var(--border);

    border-radius: 8px;
}

.sidebar-search input {
    min-width: 0;

    flex: 1;

    padding: 7px 9px;

    border: 0;

    outline: 0;

    font-size: 13px;
}

.sidebar-search button {
    width: 38px;

    border: 0;

    border-radius: 6px;

    background: var(--orange);

    color: #fff;

    cursor: pointer;
}


/* CATEGORIES */

.sidebar-categories {
    display: flex;

    flex-direction: column;
}

.sidebar-categories a {
    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 7px 9px;

    border-radius: 8px;

    color: var(--muted);

    font-size: 13px;

    font-weight: 600;
}

.sidebar-categories a span {
    display: inline-flex;

    align-items: center;

    gap: 8px;
}

.sidebar-categories a i {
    color: var(--orange);
}

.sidebar-categories a strong {
    color: #94a3b8;

    font-size: 11px;
}

.sidebar-categories a:hover,
.sidebar-categories a.active {
    background: var(--orange-light);

    color: var(--orange-dark);
}


/* POPULAR */

.popular-posts {
    display: flex;

    flex-direction: column;
}

.popular-post {
    padding: 11px 0;

    display: grid;

    grid-template-columns:
        22px 58px 1fr;

    gap: 9px;

    align-items: center;

    border-bottom:
        1px solid #eef0f3;
}

.popular-post:last-child {
    border-bottom: 0;

    padding-bottom: 0;
}

.popular-number {
    color: #cbd5e1;

    font-size: 16px;

    font-weight: 800;

    text-align: center;
}

.popular-post img {
    width: 58px;

    height: 48px;

    border-radius: 7px;

    object-fit: cover;
}

.popular-post strong {
    display: -webkit-box;

    overflow: hidden;

    color: var(--navy);

    font-size: 12px;

    line-height: 1.4;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;
}

.popular-post span {
    display: block;

    margin-top: 4px;

    color: #94a3b8;

    font-size: 10px;
}

.sidebar-empty {
    margin: 0;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   DONATION
========================================================= */

.donation-card {
    margin-bottom: 17px;

    padding: 22px;

    border:
        1px solid #fed7aa;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #fff
        );

    box-shadow: var(--shadow-sm);
}

.donation-icon {
    width: 43px;

    height: 43px;

    margin-bottom: 13px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background: #ffedd5;

    color: #ea580c;

    font-size: 18px;
}

.donation-label {
    color: #c2410c;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .07em;
}

.donation-card h3 {
    margin: 5px 0 7px;

    color: var(--navy);

    font-size: 19px;

    font-weight: 800;
}

.donation-card p {
    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.65;
}

.donation-button {
    min-height: 42px;

    margin-top: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    background: var(--orange);

    color: #fff;

    font-size: 12px;

    font-weight: 800;
}

.donation-button:hover {
    background: var(--orange-dark);

    color: #fff;
}

.donation-more {
    display: block;

    margin-top: 9px;

    color: var(--orange-dark);

    font-size: 11px;

    font-weight: 700;

    text-align: center;
}


/* TAGS */

.tags-list {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;
}

.tags-list a {
    padding: 5px 9px;

    border-radius: 6px;

    background: #f5f6f8;

    color: var(--muted);

    font-size: 11px;

    font-weight: 600;
}

.tags-list a:hover {
    background: var(--orange-light);

    color: var(--orange-dark);
}


/* =========================================================
   SUPPORT
========================================================= */

.support-section {
    padding: 10px 0 55px;
}

.support-card {
    padding: 27px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border:
        1px solid #fed7aa;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #fff7ed,
            #fff
        );
}

.support-content {
    max-width: 700px;
}

.support-content h2 {
    margin: 5px 0 7px;

    color: var(--navy);

    font-size: 22px;

    font-weight: 800;
}

.support-content p {
    margin: 0;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.7;
}

.support-actions {
    min-width: 210px;

    display: flex;

    flex-direction: column;

    gap: 8px;
}

.support-button,
.support-button-outline {
    min-height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 800;
}

.support-button {
    background: var(--orange);

    color: #fff;
}

.support-button:hover {
    background: var(--orange-dark);

    color: #fff;
}

.support-button-outline {
    border:
        1px solid var(--border);

    background: #fff;

    color: var(--navy);
}

.support-button-outline:hover {
    color: var(--orange-dark);

    border-color:
        rgba(238,129,44,.4);
}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    padding: 55px 0 0;

    background: var(--navy);

    color:
        rgba(255,255,255,.6);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 45px;

    padding-bottom: 40px;
}

.footer-brand-column {
    max-width: 390px;
}

.footer-brand {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #fff;

    font-size: 22px;

    font-weight: 800;
}

.footer-brand img {
    width: 36px;

    height: 36px;

    object-fit: contain;
}

.footer-brand > span > span {
    color: var(--orange);
}

.footer-brand-column p {
    margin: 14px 0 0;

    color:
        rgba(255,255,255,.55);

    font-size: 13px;

    line-height: 1.7;
}

.footer-socials {
    margin-top: 16px;

    display: flex;

    gap: 7px;
}

.footer-socials a {
    width: 35px;

    height: 35px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.1);

    border-radius: 8px;

    color:
        rgba(255,255,255,.6);
}

.footer-socials a:hover {
    border-color:
        rgba(238,129,44,.35);

    color: var(--orange);
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-column h4 {
    margin: 0 0 9px;

    color: #fff;

    font-size: 15px;

    font-weight: 800;
}

.footer-column a,
.footer-column span {
    color:
        rgba(255,255,255,.55);

    font-size: 13px;
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-bottom {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color:
        rgba(255,255,255,.4);

    font-size: 11px;
}


/* =========================================================
   LOGIN MODAL
========================================================= */

.login-modal {
    border: 0;

    border-radius: 17px;

    overflow: hidden;
}

.login-modal .modal-header {
    padding: 23px 25px 8px;

    border: 0;
}

.login-modal .modal-header h2 {
    margin: 4px 0 0;

    color: var(--navy);

    font-size: 23px;

    font-weight: 800;
}

.login-modal .modal-body {
    padding: 10px 25px 25px;
}

.login-intro {
    margin: 0 0 18px;

    color: var(--muted);

    font-size: 13px;
}

.social-login {
    width: 100%;

    min-height: 50px;

    margin-top: 9px;

    padding: 8px 12px;

    display: grid;

    grid-template-columns:
        28px 1fr 18px;

    align-items: center;

    gap: 9px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background: #fff;

    color: var(--navy);

    font-size: 13px;

    font-weight: 600;

    text-align: left;

    transition:
        background .2s ease,
        border-color .2s ease;
}

.social-login:hover {
    background: var(--orange-light);

    border-color:
        rgba(238,129,44,.35);
}

.social-icon {
    display: grid;

    place-items: center;

    color: var(--orange);

    font-size: 16px;
}

.social-login > i {
    color: #94a3b8;

    font-size: 11px;
}

.login-security {
    margin-top: 17px;

    color: #94a3b8;

    font-size: 11px;

    text-align: center;
}

.login-security i {
    margin-right: 4px;

    color: #22a06b;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .desktop-link {
        padding-left: 9px;

        padding-right: 9px;
    }

    .desktop-link span {
        display: none;
    }

    .desktop-link i {
        font-size: 18px;
    }

    .blog-hero-inner {
        grid-template-columns:
            minmax(0, 1fr)
            320px;

        gap: 25px;
    }

    .blog-hero-visual {
        transform:
            scale(.9);
    }

    .footer-grid {
        grid-template-columns:
            2fr 1fr 1fr;
    }

}


@media (max-width: 850px) {

    .desktop-navigation {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .blog-hero-inner {
        grid-template-columns: 1fr;
    }

    .blog-hero-visual {
        display: none;
    }

    .support-card {
        align-items: flex-start;

        flex-direction: column;
    }

    .support-actions {
        width: 100%;
    }

}


@media (max-width: 767px) {

    .navbar-container {
        width:
            calc(100% - 28px);
    }

    .navbar-brand {
        font-size: 20px;
    }

    .brand-logo {
        width: 34px;

        height: 34px;
    }

    .blog-hero {
        padding: 45px 0;
    }

    .blog-hero h1 {
        font-size: 35px;
    }

    .blog-hero p {
        font-size: 14px;
    }

    .blog-main {
        padding-top: 28px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .blog-search-bar button {
        display: none;
    }

    .blog-search-bar {
        padding-right: 12px;
    }

    .footer-grid {
        grid-template-columns:
            1fr 1fr;

        gap: 30px;
    }

}


@media (max-width: 520px) {

    .mobile-side-menu {
        width: 82vw;

        padding: 18px;
    }

    .custom-breadcrumb {
        font-size: 12px;
    }

    .hero-mini-stats {
        gap: 22px;
    }

    .blog-hero h1 {
        font-size: 32px;
    }

    .blog-card-body {
        padding: 16px;
    }

    .blog-pagination {
        flex-wrap: wrap;
    }

    .pagination-button {
        font-size: 11px;
    }

    .pagination-pages {
        order: 3;

        width: 100%;

        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        align-items: flex-start;

        flex-direction: column;

        padding: 20px 0;
    }

}