.elementor-307 .elementor-element.elementor-element-f7e47c0{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-840d237 *//* =========================================================
   SPIRIT ELECTRONICS BLOG PAGE
   ========================================================= */

.se-blog-page {
    --se-red: #e31b23;
    --se-red-dark: #c41219;
    --se-dark: #111111;
    --se-text: #333333;
    --se-muted: #777777;
    --se-light: #f7f7f7;
    --se-border: #e6e6e6;
    --se-white: #ffffff;

    font-family: "Poppins", Arial, sans-serif;
    color: var(--se-text);
    background: #ffffff;
}

.se-blog-page * {
    box-sizing: border-box;
}

.se-blog-page a {
    text-decoration: none;
}

.se-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}


/* =========================
   HERO
   ========================= */

.se-blog-hero {
    background: linear-gradient(
        135deg,
        #0e0e0e 0%,
        #242424 100%
    );

    padding: 85px 20px;
    text-align: center;
}

.se-eyebrow {
    display: block;
    color: var(--se-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.se-blog-hero h1 {
    color: #ffffff;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.15;
    margin: 0 0 18px;
    font-weight: 700;
}

.se-blog-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #d2d2d2;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   SECTION TITLES
   ========================= */

.se-title {
    margin-bottom: 32px;
}

.se-title > span,
.se-centered-title > span {
    display: block;
    color: var(--se-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.se-title h2,
.se-centered-title h2 {
    margin: 0;
    color: var(--se-dark);
    font-size: 34px;
    line-height: 1.2;
}


/* =========================
   CATEGORIES
   ========================= */

.se-categories {
    padding: 70px 0;
}

.se-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.se-category {
    min-height: 130px;
    padding: 20px 10px;
    border: 1px solid var(--se-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--se-dark);
    transition: .25s ease;
}

.se-category:hover {
    border-color: var(--se-red);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.se-icon {
    font-size: 30px;
    margin-bottom: 12px;
}

.se-category strong {
    font-size: 14px;
}


/* =========================
   FEATURED
   ========================= */

.se-featured {
    padding: 70px 0;
    background: var(--se-light);
}

.se-featured-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0,0,0,.06);
}

.se-featured-image {
    min-height: 430px;
}

.se-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.se-featured-content {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.se-category-label {
    color: var(--se-red);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.se-featured-content h2 {
    color: var(--se-dark);
    font-size: 31px;
    line-height: 1.35;
    margin: 14px 0;
}

.se-featured-content p {
    color: var(--se-muted);
    font-size: 14px;
    line-height: 1.8;
}

.se-meta {
    color: #999999;
    font-size: 13px;
    margin: 10px 0 25px;
}

.se-red-button {
    display: inline-block;
    width: fit-content;
    background: var(--se-red);
    color: #ffffff !important;
    padding: 13px 22px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.se-red-button:hover {
    background: var(--se-red-dark);
}


/* =========================
   LATEST
   ========================= */

.se-latest {
    padding: 75px 0;
}

.se-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
}

.se-view-all {
    color: var(--se-red);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
}

.se-main-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 35px;
}

.se-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* =========================
   POST CARD
   ========================= */

.se-post {
    border: 1px solid var(--se-border);
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: .25s ease;
}

.se-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.se-post > a {
    display: block;
    overflow: hidden;
}

.se-post img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.se-post:hover img {
    transform: scale(1.04);
}

.se-post-content {
    padding: 23px;
}

.se-post-content h3 {
    color: var(--se-dark);
    font-size: 20px;
    line-height: 1.4;
    margin: 10px 0;
}

.se-post-content p {
    color: var(--se-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.se-post-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--se-border);
    padding-top: 15px;
    color: #999;
    font-size: 12px;
}

.se-post-bottom a {
    color: var(--se-red);
    font-weight: 600;
}


/* =========================
   SIDEBAR
   ========================= */

.se-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.se-sidebar-box {
    border: 1px solid var(--se-border);
    border-radius: 10px;
    padding: 25px;
    background: #ffffff;
}

.se-sidebar-box h3 {
    margin: 0 0 20px;
    color: var(--se-dark);
    font-size: 19px;
}


/* SEARCH */

.se-search {
    display: flex;
    border: 1px solid #dddddd;
    border-radius: 5px;
    overflow: hidden;
}

.se-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 12px;
    font-family: inherit;
}

.se-search button {
    width: 48px;
    border: 0;
    background: var(--se-red);
    color: #ffffff;
    cursor: pointer;
}


/* POPULAR */

.se-popular {
    display: flex;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--se-border);
}

.se-popular:last-child {
    border-bottom: 0;
}

.se-popular > span {
    color: var(--se-red);
    font-size: 20px;
    font-weight: 700;
}

.se-popular strong {
    display: block;
    color: var(--se-dark);
    font-size: 13px;
    line-height: 1.45;
}

.se-popular small {
    display: block;
    color: #999;
    font-size: 11px;
    margin-top: 5px;
}


/* =========================
   SHOP CTA
   ========================= */

.se-shop-box {
    background: var(--se-red);
    border-radius: 10px;
    padding: 32px 25px;
    color: #ffffff;
}

.se-shop-box small {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.se-shop-box h3 {
    color: #ffffff;
    font-size: 23px;
    line-height: 1.35;
    margin: 12px 0;
}

.se-shop-box p {
    color: rgba(255,255,255,.85);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.se-white-button {
    display: inline-block;
    background: #ffffff;
    color: #111111 !important;
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
}


/* =========================
   BENEFITS
   ========================= */

.se-benefits {
    padding: 70px 0;
    background: var(--se-light);
}

.se-centered-title {
    text-align: center;
    margin-bottom: 40px;
}

.se-centered-title p {
    color: var(--se-muted);
    font-size: 14px;
}

.se-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.se-benefit {
    background: #ffffff;
    padding: 30px 25px;
    text-align: center;
    border-radius: 10px;
}

.se-check {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 50%;
    background: rgba(227,27,35,.1);
    color: var(--se-red);
    font-size: 20px;
    font-weight: 700;
}

.se-benefit h3 {
    color: var(--se-dark);
    font-size: 17px;
    margin: 15px 0 8px;
}

.se-benefit p {
    color: var(--se-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}


/* =========================
   NEWSLETTER
   ========================= */

.se-newsletter {
    background: #111111;
    padding: 55px 0;
}

.se-newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.se-newsletter-inner > div {
    max-width: 600px;
}

.se-newsletter-inner span {
    color: var(--se-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.se-newsletter-inner h2 {
    color: #ffffff;
    font-size: 30px;
    margin: 10px 0;
}

.se-newsletter-inner p {
    color: #aaaaaa;
    margin: 0;
    line-height: 1.7;
}

.se-newsletter-form {
    display: flex;
    width: 450px;
    max-width: 100%;
    padding: 5px;
    background: #ffffff;
    border-radius: 5px;
}

.se-newsletter-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 12px;
    font-family: inherit;
}

.se-newsletter-form button {
    border: 0;
    background: var(--se-red);
    color: #ffffff;
    padding: 0 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1024px) {

    .se-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .se-featured-box {
        grid-template-columns: 1fr;
    }

    .se-featured-image {
        min-height: 350px;
    }

    .se-main-layout {
        grid-template-columns: 1fr;
    }

    .se-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .se-shop-box {
        grid-column: span 2;
    }

    .se-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .se-newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .se-newsletter-form {
        width: 100%;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .se-blog-hero {
        padding: 60px 15px;
    }

    .se-blog-hero h1 {
        font-size: 34px;
    }

    .se-blog-hero p {
        font-size: 14px;
    }

    .se-categories,
    .se-featured,
    .se-latest,
    .se-benefits {
        padding: 50px 0;
    }

    .se-title h2,
    .se-centered-title h2 {
        font-size: 27px;
    }

    .se-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .se-category {
        min-height: 110px;
    }

    .se-featured-image {
        min-height: 230px;
    }

    .se-featured-content {
        padding: 28px 22px;
    }

    .se-featured-content h2 {
        font-size: 25px;
    }

    .se-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .se-view-all {
        margin-top: -20px;
    }

    .se-post-grid {
        grid-template-columns: 1fr;
    }

    .se-post img {
        height: 210px;
    }

    .se-sidebar {
        display: flex;
    }

    .se-shop-box {
        grid-column: auto;
    }

    .se-benefit-grid {
        grid-template-columns: 1fr;
    }

    .se-newsletter-inner h2 {
        font-size: 25px;
    }

    .se-newsletter-form {
        flex-direction: column;
        gap: 5px;
        background: transparent;
        padding: 0;
    }

    .se-newsletter-form input {
        background: #ffffff;
        border-radius: 4px;
        padding: 14px;
    }

    .se-newsletter-form button {
        padding: 14px;
    }
}/* End custom CSS */