/* 
	CeltaCode Theme Styles
	Version: 1.0.4
	Migrated to Native CSS
*/

/* Variables Mapped to theme.json */
:root {
    --white: #ffffff;
    --maintext: var(--wp--preset--color--maintext, #334155);
    --deep-forest: var(--wp--preset--color--deep-forest, #1a3c34);
    --dark-slate: var(--wp--preset--color--dark-slate, #334155);
    --tech-emerald: var(--wp--preset--color--tech-emerald, #10b981);
    --muted-gold: var(--wp--preset--color--muted-gold, #d4af37);
    --muted-light-green: var(--wp--preset--color--muted-light-green, #e2f0d9);
    --radius: 5px;
    --soft-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Base */
html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--tech-emerald);
    /* Updated to Emerald */
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

::-moz-selection {
    background: var(--tech-emerald);
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: var(--tech-emerald);
    /* Tech Emerald links */
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--deep-forest);
    text-decoration: none;
}

a:hover,
a:active,
a:focus,
button:hover,
button:active,
button:focus {
    outline: none;
    border: none;
}


ul,
ol {
    margin: 30px;
    font-size: 1.3rem;
}

ol li ol,
ul li ul {
    margin: 0 15px;
}

/* Global Typography & Layout */
body {
    font-family: 'Inter', sans-serif;
    color: var(--maintext);
    overflow-x: hidden;
    line-height: 1.8;
    /* More air */
    font-size: 1.1rem;
    /* Slightly larger base text */
    background-color: #f8fafc;
    /* Very light slate bg for distinct sections */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--dark-slate);
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* Header Styles - Transparent on Home */
header#supheader {
    background: var(--white);
    /* Default white on inner pages */
    box-shadow: var(--soft-shadow);
    position: relative;
    z-index: 9999;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.home header#supheader {
    position: absolute;
    /* Float over hero */
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle divider */
}

header#supheader .iholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0;
    max-width: 1400px;
    /* Limit width */
    margin: auto;
    padding: 0 20px;
}

/* ... (Logo and Menu follow) ... */

/* ... (Ensure all Afacad references are replaced) ... */

/* Buttons Block */
.wp-block-button .wp-element-button,
input[type="submit"] {
    padding: 1.5rem 3rem;
    border-radius: 4px;
    /* Tech Radius */
    background-color: var(--tech-emerald);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    box-shadow: var(--soft-shadow);
}

.wp-block-button .wp-element-button:hover,
input[type="submit"]:hover {
    background-color: var(--deep-forest);
    color: var(--white);
}

/* Forms (CF7) - Glassmorphism & Refinement */

.legal-data-form {
    font-size: 1rem;
    line-height: 20px;
}

.wpcf7-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--soft-shadow);
}

.wpcf7-form label {
    font-family: 'Outfit', sans-serif;
    color: var(--dark-slate);
    font-weight: 600;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea {
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-slate);
}

/* Footer - Dark Theme */
footer #celco-footer .footer-top {
    background-color: var(--deep-forest);
    /* Remove old SVG pattern if desired, or keep as texture */
    color: white;
    /* Force white text on dark background */
}

footer #celco-footer .footer-top .widgets-area .widget h3 {
    font-family: "Outfit", sans-serif;
    color: var(--tech-emerald);
    /* Emerald accents */
}

footer #celco-footer .footer-top .widgets-area .widget h3:after {
    background: var(--muted-light-green);
    opacity: 0.3;
}

footer #celco-footer .footer-top .widgets-area .widget p,
footer #celco-footer .footer-top .widgets-area .widget a {
    color: #e2e8f0;
    /* Light gray text */
}

/* Header Socials */
header#supheader .iholder .header-social a {
    background: var(--dark-slate);
    /* Dark bubbles */
}

header#supheader .iholder .header-social a svg {
    fill: var(--tech-emerald);
}

/* Hero Section */
#herosectionhome {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    /* margin-top: -80px; Removed negative margin that might cause issues with fixed headers */
    margin-bottom: 0px;
}

#herosectionhome .wrapperhs {
    padding: 0;
    height: 100%;
}

#herosectionhome .wrapperhs .overdata {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* Left align for professional look */
    width: 100%;
    height: 100%;
    padding: 0 10%;
    /* More breathing room on sides */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%);
    /* Readability gradient */
}

#herosectionhome .wrapperhs .overdata h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    /* Much smaller, elegant size */
    line-height: 1.1;
    letter-spacing: -1px;
    /* Tighter, modern tracking */
    color: var(--white);
    padding: 20px 0;
    max-width: 900px;
    /* Limit width for readability */
    /* Text Shadow for depth */
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

#herosectionhome .wrapperhs .overdata p {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 2.2rem;
    font-weight: 400;
    color: #e2e8f0;
    /* Softer white */
    padding: 20px 0 40px;
    max-width: 700px;
}

#herosectionhome .wrapperhs .overdata .likebtn {
    padding: 1rem 3rem;
    display: inline-block;
    background: var(--tech-emerald);
    color: var(--deep-forest);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    /* Glow effect */
    border: 1px solid transparent;
}

#herosectionhome .wrapperhs .overdata .likebtn:hover {
    background: transparent;
    border-color: var(--tech-emerald);
    color: var(--white);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

#herosectionhome .wrapperhs .backimg {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

#herosectionhome .wrapperhs .backimg figure,
#herosectionhome .wrapperhs .backimg figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Media Queries for Hero */
@media screen and (max-width: 1380px) {
    #herosectionhome .wrapperhs .overdata h1 {
        font-size: 4rem;
    }
}

@media screen and (max-width: 980px) {
    #herosectionhome .wrapperhs .overdata {
        padding: 0 5%;
        align-items: center;
        text-align: center;
    }

    #herosectionhome .wrapperhs .overdata h1 {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 600px) {
    #herosectionhome .wrapperhs .overdata h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    #herosectionhome .wrapperhs .overdata p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    #herosectionhome .wrapperhs .overdata .likebtn {
        width: 100%;
        text-align: center;
    }
}

/* Home General */
.home h1 {
    font-size: 3rem;
    /* Normalized */
    text-transform: none;
    /* No forced uppercase */
    letter-spacing: -0.5px;
    color: var(--dark-slate);
}

@media screen and (min-width: 980px) {
    .home h1 {
        font-size: 4rem;
        /* Reasonable max size */
    }
}

#wrapper-top,
#wrapper {
    position: relative;
    margin: 80px 0;
    padding: 40px;
}

#wrapper-top .wrap-container,
#wrapper .wrap-container {
    width: 100%;
    max-width: 1380px;
    margin: auto;
}

/* Buttons Block */
.wp-block-buttons {
    padding: 0 2rem;
}

.wp-block-button .wp-element-button,
input[type="submit"],
.celcobtn {
    padding: 1rem 2.5rem;
    /* Elegant padding */
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    background-color: var(--tech-emerald) !important;
    /* Force consistency */
    color: var(--deep-forest) !important;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wp-block-button .wp-element-button:hover,
input[type="submit"]:hover,
.celcobtn:hover {
    background-color: transparent !important;
    border-color: var(--tech-emerald);
    color: var(--tech-emerald) !important;
    /* Invert on hover for elegance */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

/* Category Intro */
#category-intro {
    position: relative;
    width: 100%;
    height: auto;
}

#category-intro .overdatacat {
    position: relative;
    background: linear-gradient(347deg, rgba(92, 195, 3, 0.4) 0%, rgba(0, 128, 148, 0.4) 100%);
}

#category-intro .main-category-page-title {
    width: 100%;
    max-width: 1380px;
    margin: auto;
    padding: 30px;
}

#category-intro .category-title,
#category-intro .category-description p {
    color: var(--white);
}

#category-intro .background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 100%;
}

#category-intro .background-image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Grid */
/* Recent Posts Widget / Shortcode (Grid Layout) */
ul.celco-latest-posts {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns as requested */
    gap: 30px;
}

ul.celco-latest-posts li {
    display: flex;
    flex-direction: column;
    /* Stack image and text */
    margin-bottom: 0 !important;
    padding-bottom: 0;
    border: none;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

/* Forms (CF7) */
.wpcf7-form {
    background: #f2f2f2;
    padding: 40px 20px;
    border-radius: 20px;
}

.wpcf7-form label {
    font-family: 'Outfit', sans-serif;
    width: 100%;
}

.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid #f2f2f2;
    border-radius: 5px;
}

.wpcf7-form .wpcf7-submit {
    width: 100%;
    margin-top: 20px;
}

/* Header Styles */
header#supheader {
    background: #fff;
    box-shadow: 1px 1px 28px -26px #333;
    position: relative;
    z-index: 9999;
}

.home header#supheader {
    background: transparent;
    box-shadow: none !important;
}

header#supheader .iholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 5px 0;
}

header#supheader .iholder .logo {
    position: relative;
    max-width: 200px;
    padding: 1rem;
    margin-left: 20px;
}

header#supheader .iholder .logo a {
    display: block;
}

header#supheader .iholder .logo a img {
    width: 100%;
    height: auto;
}

header#supheader .iholder .menu-wrap {
    display: flex;
    align-items: center;
}

header#supheader .iholder .header-social {
    display: flex;
    align-items: center;
    margin: 0 20px;
    z-index: 9;
}

header#supheader .iholder .header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    max-width: 30px;
    background: transparent;
    border-radius: 100%;
    width: 30px;
    height: 30px;
}

.header-social .whatsapp img,
.header-social .whatsapp svg {
    width: 28px;
    height: 28px;
}

header#supheader .iholder .header-social a.instagram {
    background: linear-gradient(171deg, rgba(162, 40, 0, 1) 0%, rgba(230, 142, 2, 1) 100%);
}

header#supheader .iholder .header-social a.linkedin {
    background: linear-gradient(171deg, rgba(84, 201, 227, 1) 0%, rgba(8, 138, 164, 1) 100%);
}

header#supheader .iholder .header-social a.facebook {
    background: linear-gradient(171deg, rgba(88, 202, 255, 1) 0%, rgba(8, 75, 164, 1) 100%);
}

header#supheader .iholder .header-social a.xtwitter {
    background: linear-gradient(171deg, rgba(54, 77, 87, 1) 0%, rgba(12, 36, 43, 1) 100%);
}

header#supheader .iholder .header-social a svg {
    fill: white;
    width: 20px;
}

/* Nav Menu Spacing */
header#supheader .iholder .menu-wrap ul.nav>li {
    margin: 0 15px;
    /* More air between items */
}

header#supheader .iholder .menu-wrap ul.nav>li>a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    padding: 10px 0;
    position: relative;
    color: var(--dark-slate);
    /* Default color */
}

.home header#supheader .iholder .menu-wrap ul.nav>li>a {
    color: var(--white);
    /* White on home transparency */
}

/* Hover Effect */
header#supheader .iholder .menu-wrap ul.nav>li>a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--tech-emerald);
    transition: width 0.3s;
}

header#supheader .iholder .menu-wrap ul.nav>li>a:hover:after {
    width: 100%;
}

/* Mobile Nav Toggle */
.extra-block {
    position: fixed;
    bottom: 5vh;
    /* Move down */
    right: 20px;
    z-index: 9999;
}

.extra-block #mobile-nav-toggle {
    position: relative;
    display: inline-block;
    float: right;
    height: 40px;
    top: 20px;
    width: 50px;
    cursor: pointer;
    z-index: 99999;
}

.extra-block #mobile-nav-toggle .btntog {
    background: linear-gradient(347deg, rgba(92, 195, 3, 1) 0%, rgba(0, 128, 148, 1) 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.extra-block #mobile-nav-toggle .btntog .btnline {
    width: 25px;
    height: 3px;
    display: block;
    position: absolute;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}

.extra-block #mobile-nav-toggle .btntog .midline {
    width: 30px;
}

.extra-block #mobile-nav-toggle .btntog .topline {
    transform: translateY(-6px);
}

.extra-block #mobile-nav-toggle .btntog .botline {
    transform: translateY(6px);
}

.extra-block #mobile-nav-toggle .btntog.opened {
    background: linear-gradient(347deg, rgba(195, 3, 40, 1) 0%, rgba(68, 0, 148, 1) 100%);
}

.extra-block #mobile-nav-toggle .btntog.opened .midline {
    opacity: 0;
}

.extra-block #mobile-nav-toggle .btntog.opened .topline {
    transform: translateY(0px) rotate(45deg);
}

.extra-block #mobile-nav-toggle .btntog.opened .botline {
    transform: translateY(0px) rotate(-45deg);
}

@media screen and (min-width: 980px) {
    .extra-block {
        display: none;
    }

    .herothere .nav>li>a::after {
        background: #174756;
    }

    .herothere ul li a {
        color: white;
    }

    .herothere .dropdown-menu {
        background-color: #081b24;
    }
}

@media screen and (max-width: 980px) {
    header#supheader .iholder .menu-wrap {
        display: none;
        transform: translateY(-1500px);
    }

    header#supheader .iholder .menu-wrap.opened {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        padding: 2rem;
        background: #fafafa;
        z-index: 999;
        animation: menuenter 1s forwards ease-in-out;
    }

    header#supheader .iholder .menu-wrap.opened .menu {
        text-align: center;
    }

    header#supheader .iholder .menu-wrap.opened .menu .nav {
        display: flex;
        flex-direction: column;
        height: 70vh;
    }

    header#supheader .iholder .header-social {
        width: 100%;
        justify-content: space-around;
    }
}

@keyframes menuenter {
    0% {
        opacity: 0;
        transform: translateY(-1500px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* Footer Styles */
footer #celco-footer {
    width: 100%;
}

footer #celco-footer .wrap-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer #celco-footer .wrap-container .footer-logo {
    max-width: 50px;
    margin: 0 20px;
}

footer #celco-footer .footer-top {
    margin: 0;
    /* Removed margin */
    padding: 40px 20px 10px;
    /* Reduced vertical padding */
    background-color: #ffffff;
}

footer #celco-footer .footer-top .widgets-area {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 20px;
}

footer #celco-footer .footer-top .widgets-area .widget h3 {
    position: relative;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    margin-bottom: 40px;
}

footer #celco-footer .footer-top .widgets-area .widget h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 1px;
    background: #ddd;
}

@media screen and (max-width: 980px) {
    footer #celco-footer .footer-top .widgets-area {
        flex-direction: row;
        flex-wrap: wrap;
    }

    footer #celco-footer .footer-top .widgets-area>div {
        width: 48%;
        margin: 50px 0;
    }
}

@media screen and (max-width: 680px) {
    footer #celco-footer .footer-top .widgets-area {
        flex-direction: column;
    }

    footer #celco-footer .footer-top .widgets-area>div {
        width: 100%;
        margin: 50px 0;
    }
}

/*
   --------------------------------------------------------------
   Regressions Fix: Carousel & Blog Styles
   --------------------------------------------------------------
*/

/* Carousel Styles (Modernized) */
#welcomehome,
#welcomehome .wh-container {
    width: 100%;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden;
}

#carrusel {
    position: relative;
    margin: 0;
    padding: 60px 0;
    /* More vertical air */
}

#carrusel .carrusel-holder {
    width: 100%;
    display: block;
    min-height: 400px;
    /* Reduced specific height */
}

#carrusel .carrusel-holder .carrusel-wrap {
    width: 250px;
    /* User requested 250px */
    margin: 0 15px;
    /* Use px for predictable gap */
    height: 400px;
    /* Fixed elegant height */
    float: left;
    position: relative;
    border-radius: 12px;
    /* Smooth corners */
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: transform 0.3s ease;
}

#carrusel .carrusel-holder .carrusel-wrap:hover {
    transform: translateY(-5px);
    /* Lift effect */
}

#carrusel .carrusel-holder .carrusel-wrap .carrusel-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    border: 0px;
    border-radius: 12px;
}

#carrusel .carrusel-holder .carrusel-wrap .carrusel-image figure {
    position: relative;
    width: 100%;
    height: 100%;
}

#carrusel .carrusel-holder .carrusel-wrap .carrusel-image figure .filter {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    /* Modern Gradient: Bottom dark to transparent top */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.3s ease-in-out;
}

#carrusel .carrusel-holder .carrusel-wrap:hover .carrusel-image figure .filter {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 60%);
}

#carrusel .carrusel-holder .carrusel-wrap .carrusel-image figure img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

#carrusel .carrusel-holder .carrusel-wrap:hover .carrusel-image figure img {
    transform: scale(1.05);
}

#carrusel .carrusel-holder .carrusel-wrap .carrusel-image figure img.coverit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#carrusel .carrusel-holder .carrusel-wrap .carrusel-content {
    display: flex;
    align-items: flex-end;
    /* Align bottom */
    justify-content: center;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding-bottom: 20px;
}

#carrusel .carrusel-holder .carrusel-wrap .carrusel-content .carrusel-text {
    position: relative;
    text-align: center;
    width: 100%;
    z-index: 10;
}

/* Fixed Typography */
#carrusel .carrusel-holder .carrusel-wrap .carrusel-content .carrusel-text h2,
#carrusel .carrusel-holder .carrusel-wrap .carrusel-content .carrusel-text h3,
#carrusel .carrusel-holder .carrusel-wrap .carrusel-content .carrusel-text h4,
#carrusel .carrusel-holder .carrusel-wrap .carrusel-content .carrusel-text p {
    font-family: "Outfit", sans-serif;
    color: white;
    font-size: 1.8rem;
    /* Smaller, cleaner */
    font-weight: 700;
    line-height: 2.2rem;
    margin: 0 0 5px 0;
    letter-spacing: 0.5px;
}

#carrusel .carrusel-holder .carrusel-wrap .carrusel-content .carrusel-text .carrsub p {
    color: var(--muted-light-green);
    font-size: 1rem;
    line-height: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    #carrusel .carrusel-holder .carrusel-wrap {
        width: 31%;
        margin: 0 1.1%;
    }
}

@media screen and (max-width: 768px) {
    #carrusel .carrusel-holder .carrusel-wrap {
        width: 48%;
        margin: 0 1%;
        height: 350px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    #carrusel {
        padding: 30px 0;
    }

    #carrusel .carrusel-holder .carrusel-wrap {
        width: 100%;
        max-width: 220px;
        margin: 0 4px 20px 4px;
    }
}

/* Flickity Styles */
.flickity-enabled {
    position: relative;
}

.flickity-enabled:focus {
    outline: 0;
}

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: grabbing;
}

.flickity-button {
    position: absolute;
    background: hsla(0, 0%, 100%, .0);
    border: none;
    color: #fff;
}

.flickity-button:hover {
    background: none;
    cursor: pointer;
}

.flickity-button:focus {
    outline: 0;
    box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
    opacity: .6;
}

.flickity-button:disabled {
    opacity: .3;
    cursor: auto;
    pointer-events: none;
}

.flickity-button-icon {
    fill: currentColor;
}

.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(0%);
}

.flickity-prev-next-button.previous {
    left: 10px;
}

.flickity-prev-next-button.next {
    right: 10px;
}

.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
}

.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: .25;
    cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
    opacity: 1;
}

/* Global Container Strategy */
/* Global Container Strategy */
#wrapper-top,
#wrapper,
footer #celco-footer .wrap-container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Header Full Width Override */
header#supheader .iholder {
    max-width: 100%;
    /* Full Width as requested */
    width: 100%;
    padding: 0 40px;
    /* Some edge padding */
}

/* Ensure Hero Background stays full width */
#herosectionhome {
    width: 100%;
}

/* Hero Overlay - Full Width Gradient, Contained Content */
#herosectionhome .wrapperhs .overdata {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    /* UNCONSTRAIN background */

    /* Center Content Strategy */
    padding: 0 max(20px, calc((100% - 1280px) / 2));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* List Styling (General Content) */
.entry-content ul,
.entry-content ol {
    margin: 20px 0 20px 20px;
    padding-left: 20px;
}

.entry-content ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.entry-content ul li::before {
    content: '•';
    color: var(--tech-emerald);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: -15px;
    top: -5px;
}

.entry-content ol li {
    margin-bottom: 10px;
    padding-left: 5px;
    color: var(--dark-slate);
    font-weight: 600;
}

/* Footer Redesign - Clean Grid & Dark Mode */
footer #celco-footer .footer-top {
    background-color: var(--deep-forest);
    /* DARK MODE */
}

footer #celco-footer .footer-top .widgets-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Column Grid now */
    gap: 40px;
    max-width: 1280px;
    margin: auto;
}

/* Footer Headers - White Text */
footer .widget h3,
footer .widget h4,
footer .wp-block-heading {
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    /* White for contrast */
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--tech-emerald);
    padding-bottom: 10px;
}

/* Footer Links & Text - Light Text */
footer .widget p,
footer .widget li,
footer .widget a {
    color: #e2f0d9;
    line-height: 1.6;
}

footer .widget a:hover {
    color: var(--tech-emerald);
    padding-left: 5px;
}


/* Page Hero */
.page-hero {
    position: relative;
    margin: 0;
    padding: 30px;
    width: 100%;
}

.page-hero .ph-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.page-hero .ph-content {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    z-index: 1;
}

.page-hero .ph-content h1 {
    color: white;
    font-size: 1.5rem;
}

.page-hero .ph-content p {
    color: white;
    font-size: 1.4rem;
}


/* Solutions/* Single Post Redesign */
#wrapper.blog-classic {
    margin: 0 auto;
}

#wrapper.blog-single {
    padding: 60px 20px;
    background-color: #ffffff;
}

#wrapper.blog-single .wrap-container {
    max-width: 900px;
    /* Optimal reading width, less than 1280px */
    margin: auto;
    width: 100%;
}

.single-post-content {
    width: 100%;
}

/* Post Header */
.single-post-categories a {
    color: var(--tech-emerald);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-right: 10px;
    text-decoration: none;
    letter-spacing: 1px;
}

.single-post-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0;
    color: var(--deep-forest);
}

.authorship-minimal {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    color: var(--dark-slate);
    font-size: 0.95rem;
}

.authorship-minimal .amin-wrap {
    display: flex;
    align-items: center;
}

.authorship-minimal .amin-pic img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.authorship-minimal .aminame {
    font-weight: 700;
    color: var(--deep-forest);
    margin: 0;
}

.authorship-minimal .amidate {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* Featured Image */
.single-post-content .featured-thumb {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 110px;
}

.single-post-content .featured-thumb img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--soft-shadow);
}

/* Content Typography */
.entry-content,
.single-post-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--maintext);
}

.single-post-content p {
    margin-bottom: 1.5em;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--deep-forest);
    margin-top: 2em;
    margin-bottom: 0.8em;
    font-weight: 700;
}

.single-post-content h2 {
    font-size: 2rem;
}

.single-post-content h3 {
    font-size: 1.6rem;
}

/* Share Section (Fixed) */
#celcoshare {
    margin: 60px 0;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

#celcoshare h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--deep-forest);
}

.cshare-items {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cshitem a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background 0.3s;
    fill: var(--deep-forest);
}

.cshitem a svg {
    width: 24px;
    height: 24px;
}

.cshitem a:hover {
    transform: translateY(-3px);
    background: var(--tech-emerald);
    fill: #fff;
}

.cshitem.whatsapp-share a:hover {
    background: #25D366;
}

.cshitem.twitter-share a:hover {
    background: #1DA1F2;
}

.cshitem.facebook-share a:hover {
    background: #1877F2;
}

.cshitem.linkedin-share a:hover {
    background: #0A66C2;
}

/* Author Box (Refined) */
#authorbox-post {
    margin-top: 60px;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.abp-inner {
    display: flex;
    align-items: start;
    gap: 30px;
}

.abp-pic img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--tech-emerald);
}

.abp-name h3 {
    font-size: 1.8rem;
    margin: 0 0 5px;
    color: var(--deep-forest);
}

.abp-name .author-site {
    font-size: 0.9rem;
    color: var(--tech-emerald);
    margin-bottom: 15px;
}

/* Prev/Next Navigation */
.prevnext-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.prev-post,
.next-post {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    transition: background 0.3s;
}

.prev-post:hover,
.next-post:hover {
    background: #f1f5f9;
}

.prev-post img,
.next-post img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    margin-right: 15px;
}

.next-post {
    text-align: right;
    flex-direction: row-reverse;
}

.next-post img {
    margin-right: 0;
    margin-left: 15px;
}

.prevnext-posts a {
    text-decoration: none;
    color: var(--dark-slate);
    line-height: 1.4;
    font-size: 0.9rem;
}

.prevnext-posts a strong {
    display: block;
    font-size: 1.1rem;
    color: var(--deep-forest);
    margin-top: 5px;
}

/* Responsive Single */
@media screen and (max-width: 768px) {
    #wrapper.blog-single {
        padding: 40px 15px;
    }

    .single-post-content h1 {
        font-size: 2.2rem;
    }

    .abp-inner {
        flex-direction: column;
        text-align: center;
    }

    .abp-pic {
        margin: auto;
    }

    .prevnext-posts {
        grid-template-columns: 1fr;
    }

    .next-post {
        flex-direction: row;
        text-align: left;
    }

    .next-post img {
        margin-left: 0;
        margin-right: 15px;
    }
}

/* Hide Sidebar on Single Post for Clean Layout */
.single #wrapper.blog-single aside {
    display: none;
}

/* Comments Section Redesign */
.comments-area {
    margin-top: 60px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.comments-title,
.comment-reply-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--deep-forest);
    margin-bottom: 30px;
    font-weight: 700;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-list li.comment {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.comment-list li.comment .comment-body {
    position: relative;
    padding-left: 70px;
    /* Space for avatar */
}

.comment-list li.comment .comment-author .avatar {
    position: absolute;
    left: 0;
    top: 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--tech-emerald);
}

.comment-list li.comment .comment-author .fn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1.1rem;
    color: var(--deep-forest);
}

.comment-list li.comment .comment-metadata {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.comment-list li.comment .comment-metadata a {
    color: #888;
    text-decoration: none;
}

.comment-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-list li.comment .reply a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--tech-emerald);
    text-transform: uppercase;
    text-decoration: none;
}

/* Threaded Comments */
.comment-list .children {
    list-style: none;
    padding-left: 20px;
    margin-top: 20px;
    border-left: 2px solid #e2e8f0;
}

/* Comment Form */
#respond {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: var(--soft-shadow);
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-slate);
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
    background: #fdfdfd;
}

.comment-form textarea:focus,
.comment-form input:focus {
    border-color: var(--tech-emerald);
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-submit .submit {
    background-color: var(--tech-emerald);
    color: var(--deep-forest);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.form-submit .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Page Hero Section (Custom Headers) */
/* Gutenberg Columns Support */
.wp-block-columns {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5em;
    gap: 2em;
    /* Add space between columns */
}

.wp-block-columns>.wp-block-column {
    flex-grow: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 782px) {
    .wp-block-columns {
        flex-wrap: nowrap !important;
    }

    .wp-block-columns>.wp-block-column {
        flex-basis: 0;
        flex-grow: 1;
    }
}

/* Stack on mobile */
@media (max-width: 781px) {
    .wp-block-columns {
        flex-direction: column;
    }

    .wp-block-columns>.wp-block-column {
        flex-basis: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Solutions Carousel Section (Pre-Footer) */
#solutions-carousel-section {
    padding: 80px 20px;
    background: #f8fafc;
    /* Light distinct background */
    border-top: 1px solid #e2e8f0;
}

#solutions-carousel-section .sc-container {
    max-width: 1280px;
    margin: auto;
}

#solutions-carousel-section .sc-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark-slate);
    margin-bottom: 40px;
}

/* Flickity Carousel Styling */
#solutions-carousel-section .main-carousel {
    margin-bottom: 50px;
}

#solutions-carousel-section .carousel-cell {
    width: 300px;
    /* Card Width */
    margin-right: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

#solutions-carousel-section .carousel-cell:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

#solutions-carousel-section .carousel-cell a {
    text-decoration: none;
    color: inherit;
}

#solutions-carousel-section .carousel-cell .cc-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

#solutions-carousel-section .carousel-cell .cc-content {
    padding: 20px;
}

#solutions-carousel-section .carousel-cell .cc-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-slate);
    margin: 0;
    line-height: 1.4;
}

#solutions-carousel-section .carousel-cell:hover .cc-content h3 {
    color: var(--tech-emerald);
}

/* Action Button Container */
#solutions-carousel-section .sc-action {
    text-align: center;
    margin-top: 40px;
}

/* Responsive Footer & Carousel */
@media screen and (max-width: 1024px) {
    footer #celco-footer .footer-top .widgets-area {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols tablet */
    }

    #solutions-carousel-section .carousel-cell {
        width: 260px;
    }
}

@media screen and (max-width: 600px) {
    footer #celco-footer .footer-top .widgets-area {
        grid-template-columns: 1fr;
        /* 1 col mobile */
    }

    #solutions-carousel-section .carousel-cell {
        width: 85%;
        margin-right: 15px;
    }

    #herosectionhome .wrapperhs .overdata {
        padding: 0 20px;
    }
}

/* Footer Bottom Bar (Dark & Compact) */
footer #celco-footer .footer-bottom {
    background-color: #0f2922;
    /* Darker than Deep Forest */
    padding: 15px 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer #celco-footer .footer-bottom .wrap-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

footer #celco-footer .footer-bottom .footer-logo {
    display: flex;
    align-items: center;
}

footer #celco-footer .footer-bottom .flogo {
    width: 30px;
    /* Small icon */
    height: auto;
    opacity: 0.8;
}

footer #celco-footer .footer-bottom .copyr p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    /* Slightly more visible */
    font-size: 0.95rem;
    /* Increased from 0.85rem */
    text-align: right;
}

footer #celco-footer .footer-bottom .copyr a {
    color: rgba(255, 255, 255, 0.6);
    /* Slightly more visible */
    text-decoration: none;
    transition: color 0.3s;
}

footer #celco-footer .footer-bottom .copyr a:hover {
    color: var(--tech-emerald);
}

/* Subtle Body Background Decoration (Tech Grid) */
body {
    background-color: #f8fafc;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    /* Subtle Dot Grid */
}

/* Ensure wrapper backgrounds remain clean where needed */
#wrapper.blog,
.single #wrapper,
#solutions-carousel-section {
    background-color: transparent !important;
    /* Let body pattern show through or maintain specific bg */
}

/* White containers need explicitly white background to pop against pattern */
#wrapper.blog .wrap-container .entries article .article-wrapper .inner-gap,
.wpcf7-form,
.single #wrapper .wrap-container {
    background: #ffffff;
}

.article-wrapper a {
    color: black;
}

/* Responsive Footer Bottom */
@media screen and (max-width: 600px) {
    footer #celco-footer .footer-bottom .wrap-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    footer #celco-footer .footer-bottom .copyr p {
        text-align: center;
    }
}

/* Blog Styles (Fixing Footer Lists and Grids) */
#wrapper.blog {
    margin: 0px auto;
    padding: 80px 40px;
    /* Background SVG pattern removed in favor of global one */
}

#wrapper.blog .wrap-container .entries {
    transition: all .5s ease-in-out;
    column-gap: 30px;
    column-fill: initial;
}

#wrapper.blog .wrap-container .entries article {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    box-shadow: 1px 1px 10px -7px #818181;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .featured-image .post-thumbnail figure img {
    border-radius: 5px 5px 0 0;
    width: 100%;
    height: auto;
    transition: all .5s ease-in-out;
    backface-visibility: hidden;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .featured-image .post-thumbnail:hover figure img {
    opacity: .75;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .inner-gap {
    background: #fff;
    padding: 10px;
    box-shadow: 10px 10px 30px -15px #ddd;
    border-radius: 10px;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .inner-gap h2 {
    margin: 15px 0 20px;
}

.inner-data .btnarea {
    margin: 15px 0;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .authorbox {
    margin-top: 4px;
    background: #fff;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .authorbox .author-data {
    width: 100%;
    display: flex;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .authorbox .author-data p {
    margin: 0;
    padding: 0;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .authorbox .comments {
    display: flex;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .authorbox .comments svg {
    width: 18px;
    fill: #6cb642;
    margin-left: 10px;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .authorbox span {
    margin-left: 10px;
    text-transform: capitalize;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .post-categories {
    background: #fff;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .post-categories .categ {
    margin: 0 5px;
    padding: 5px 10px;
}

#wrapper.blog .wrap-container .entries article .article-wrapper .post-categories a,
#wrapper.blog .wrap-container .entries article .article-wrapper .post-categories p,
#wrapper.blog .wrap-container .entries article .article-wrapper .post-categories span {
    margin: 0;
    background: #f7f7f7;
    display: inline-block;
    padding: 0 10px;
    border-radius: 5px;
}

/* Masonry Layout Fixes */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    #wrapper.blog .wrap-container .entries {
        column-count: 2;
    }
}

@media only screen and (min-width: 1024px) {
    #wrapper.blog .wrap-container .entries {
        column-count: 3;
    }
}

/* Author Box & Other missed partials */
#authorbox-post {
    max-width: 980px;
    background: #F5F7F7;
    border-radius: 20px;
    padding: 20px;
    margin: 50px 0;
}

#authorbox-post .abp-inner {
    display: flex;
    align-items: center;
}

#authorbox-post .abp-inner .abp-picture {
    width: 25%;
}

#authorbox-post .abp-inner .abp-picture .abp-pic {
    width: 100%;
    margin: 0 10px;
}

#authorbox-post .abp-inner .abp-picture .abp-pic img {
    width: 100%;
    height: auto;
}

#authorbox-post .abp-inner .abp-picture .auth-page {
    width: 100%;
    text-align: center;
    margin: 0 10px;
}

#authorbox-post .abp-inner .abp-picture .auth-page a {
    width: 100%;
    display: block;
    border: 2px solid #81af2f;
    padding: 0.5rem;
    margin: 20px auto;
    border-radius: 20px;
    color: #51593b;
}

#authorbox-post .abp-inner .abp-container {
    padding: 2rem;
}

#authorbox-post .abp-inner .abp-container .abp-name h3 {
    margin: 10px 0 !important;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 3rem;
}

#authorbox-post .abp-inner .abp-container .abp-name .author-site {
    margin: -5px 0 15px;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 2rem;
    letter-spacing: 2px;
    color: green;
}

#authorbox-post .abp-inner .abp-container .abp-bio p {
    font-size: 15px;
    line-height: 30px;
}

/* Single & Sidebar Regressions */
.single #wrapper {
    margin: 0 auto;
    padding: 80px 0;
    background-color: #ffffff;
}

.single #wrapper .wrap-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1380px;
    padding: 10px 20px !important;
    background: #fff;
}

.single #wrapper .wrap-container .single-post-content {
    width: 80%;
}

.single #wrapper .wrap-container aside {
    width: 25%;
    margin: 20px;
}

.single #wrapper .wrap-container aside .asin {
    padding: 20px;
    background: #F5F7F7;
    border-radius: 20px;
}

#sidebar-blog .widget h2,
#sidebar-blog .widget h3,
#sidebar-blog .widget h4,
#sidebar-blog .widget h5,
#sidebar-blog .widget h6 {
    margin: 30px 0 10px;
}

#sidebar-blog .widget ul {
    margin: 0 40px;
    list-style-type: circle;
}

#sidebar-blog .widget ul li {
    padding: 0;
    margin: 0;
}

#sidebar-blog .widget ul li a {
    position: relative;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: .4px;
}

@media screen and (max-width: 980px) {
    .single #wrapper .wrap-container {
        flex-direction: column;
    }

    .single #wrapper .wrap-container .single-post-content,
    .single #wrapper .wrap-container aside {
        width: 100%;
    }

    #authorbox-post .abp-inner {
        flex-direction: column;
    }

    #authorbox-post .abp-inner .abp-picture {
        width: 100%;
    }

    #authorbox-post .abp-inner .abp-picture .abp-pic {
        max-width: 90px;
        margin: auto;
    }
}