:root {
    --bp-orange: #f79529;
    --bp-orange-dark: #f79529;
    --bp-text: #000000;
    --bp-muted: #777;
    --bp-bg: #f4f4f4;
    --bp-card: #ffffff;
    --bp-dark: #13131d;
    --bp-border: #ece7df;
    --bp-radius: 22px;
    --bp-shadow: 0 8px 28px rgba(0, 0, 0, .06);
    --bp-container: 1280px;
    --bp-container-narrow: 1120px;
    --bp-container-single: 1140px;
}

.bp-container {
    width: min(calc(100% - 40px), var(--bp-container));
    margin: 0 auto;
}

.bp-container-narrow {
    width: min(calc(100% - 40px), var(--bp-container-narrow));
    margin: 0 auto;
}

.bp-container-single {
    width: min(calc(100% - 40px), var(--bp-container-single));
    margin: 0 auto;
}

.bp-blog-home,
.bp-category-page,
.bp-single-page {
    background: var(--bp-card);
    color: var(--bp-text);
}

.bp-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bp-hero-home {
    min-height: 560px;
    background-color: #333;
}

.bp-hero-category {
    min-height: 500px;
    background-color: #444;
}

.bp-hero-single {
    min-height: 560px;
    background-color: #3a3a3a;
}

.bp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .36) 45%, rgba(0, 0, 0, .24) 100%);
}

.bp-hero-overlay-image {
    z-index: 1;
    left: 0;
    top: 75%;
    position: absolute;
}

.bp-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 30px;
}

.bp-hero-copy {
    max-width: 560px;
}

.bp-hero-copy h1 {
    margin: 0 0 18px;
    color: #fff;
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.02em;
    font-family: "Poppins", sans-serif;
}

.bp-hero-title-line,
.bp-hero-highlight {
    display: block;
    font-size: 88px;
}

.bp-hero-highlight {
    color: var(--bp-orange);
}

.bp-hero-copy p {
    margin: 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    max-width: 520px;
}

.bp-category-title {
    font-size: 61px;
    color: #fff;
    text-transform: uppercase;
    line-height: .95;
    max-width: 700px;
}

.bp-hero-copy-single {
    max-width: 860px;
}

.bp-single-category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--bp-orange);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
}

.bp-single-title {
    font-size: 58px;
    line-height: 1.02;
    color: #fff;
    margin: 0 0 18px;
}

.bp-single-meta {
    margin-bottom: 16px;
}

.bp-single-meta .bp-card-date {
    color: #f0d8ba;
    font-size: 14px;
}

.bp-single-excerpt {
    color: #fff;
    max-width: 760px;
    font-size: 19px;
    line-height: 1.6;
}

.bp-blog-content {
    padding: 30px 0 90px;
}

.bp-blog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.bp-sidebar {
    position: sticky;
    top: 30px;
}

.bp-box {
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    overflow: hidden;
}

.bp-box-dark {
    background: linear-gradient(180deg, #4b4b4d 0%, #333438 100%);
    color: #fff;
}

.bp-box-light {
    background: #f0f1ef;
    color: var(--bp-text);
}

.bp-box-title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.bp-box-title::after {
    content: "";
    width: 100%;
    height: 1.3px;
    position: absolute;
    bottom: -1rem;
    left: 0;
    background-color: var(--bp-orange);
}

.bp-box-title img {
    margin-left: 8px;
}

.bp-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bp-category-list li {
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.bp-category-list li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.bp-category-list a {
    display: block;
    padding: 16px 0;
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease, transform .2s ease;
}

.bp-category-list a:hover {
    color: var(--bp-orange);
    transform: translateX(4px);
}

.bp-recent-posts {
    display: grid;
    gap: 14px;
    margin-top: 2.5rem;
}

.bp-recent-post {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: start;
}

.bp-recent-thumb {
    display: block;
    width: 74px;
    height: 74px;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
}

.bp-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bp-recent-title {
    display: block;
    color: var(--bp-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
}

.bp-recent-title:hover {
    color: var(--bp-orange-dark);
}

.bp-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    color: #999;
    font-size: 15px;
}

.bp-breadcrumbs a {
    color: #999;
    text-decoration: none;
}

.bp-breadcrumbs a:hover {
    color: var(--bp-orange-dark);
}

.bp-category-section {
    margin-bottom: 52px;
}

.bp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.bp-section-header-single {
    margin-bottom: 26px;
}

.bp-section-header h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #000000;
}

.bp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    height: 48px;
    padding: 0 24px;
    background: #F89016;
    background: linear-gradient(90deg, rgba(248, 144, 22, 1) 0%, rgba(248, 144, 22, 1) 50%, rgba(243, 120, 30, 1) 100%);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform .2s ease, background .2s ease;
}

.bp-btn:hover {
    background: var(--bp-orange-dark);
    transform: translateY(-1px);
    color: #fff;
}

.bp-card-grid {
    display: grid;
    gap: 24px;
}

.bp-card-grid-home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bp-card-grid-category {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bp-card {
    background: var(--bp-card);
    border-radius: var(--bp-radius);
    overflow: hidden;
    box-shadow: var(--bp-shadow);
    border: 1px solid #f1ece5;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    max-width: 330px;
}

.bp-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    background: #ddd;
    overflow: hidden;
}

.bp-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
    position: relative;
}

.bp-card:hover .bp-card-image img {
    transform: scale(1.03);
}

.bp-card-body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #f7f7f7;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.bp-card-title {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
    min-height: 62px;
}

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

.bp-card-title a:hover {
    color: var(--bp-orange-dark);
}

.bp-card-meta-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.bp-card-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a3a3a3;
    font-size: 13px;
    line-height: 1;
}

.bp-card-date svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex: 0 0 auto;
}

.bp-card-arrow {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e2a046;
    text-decoration: none;
    flex: 0 0 auto;
}

.bp-card-arrow svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.bp-card-arrow:hover {
    color: var(--bp-orange-dark);
}

.bp-thumb-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #dedede 0%, #cfcfcf 100%);
}

.bp-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 46px;
}

.bp-page-item .page-numbers {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    background: transparent;
    font-weight: 600;
    transition: all .2s ease;
}

.bp-page-item .page-numbers.current {
    background: var(--bp-orange);
    color: #fff;
}

.bp-page-item .page-numbers.next,
.bp-page-item .page-numbers.prev {
    width: auto;
    padding: 0 16px;
}

.bp-page-item .page-numbers:hover {
    background: #f0f0f0;
    color: var(--bp-orange-dark);
}

.bp-single-content-wrap {
    padding: 56px 0 90px;
}

.bp-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
    align-items: start;
}

.bp-single-main {
    min-width: 0;
}

.bp-single-sidebar {
    position: sticky;
    top: 30px;
}

.bp-single-article {
    background: #fff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: var(--bp-shadow);
    border: 1px solid #f1ece5;
}

.bp-entry-content {
    color: #2b2b2b;
    font-size: 18px;
    line-height: 1.8;
}

.bp-entry-content>*:first-child {
    margin-top: 0;
}

.bp-entry-content>*:last-child {
    margin-bottom: 0;
}

.bp-entry-content h2,
.bp-entry-content h3,
.bp-entry-content h4 {
    color: #161616;
    line-height: 1.2;
    margin: 32px 0 16px;
    font-weight: 800;
}

.bp-entry-content h2 {
    font-size: 34px;
}

.bp-entry-content h3 {
    font-size: 28px;
}

.bp-entry-content h4 {
    font-size: 22px;
}

.bp-entry-content p {
    margin: 0 0 18px;
    color: #54595f;
}

.bp-entry-content ul,
.bp-entry-content ol {
    margin: 0 0 22px 24px;
}

.bp-entry-content li {
    margin-bottom: 8px;
    color: #54595f;
}

.bp-entry-content img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    margin: 24px auto;
}

.bp-entry-content figure {
    margin: 24px 0;
}

.bp-entry-content a {
    color: var(--bp-orange-dark);
    text-decoration: underline;
}

.bp-entry-content blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--bp-orange);
    background: #faf7f2;
    border-radius: 12px;
}

.bp-entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    display: block;
    overflow-x: auto;
}

.bp-entry-content table td,
.bp-entry-content table th {
    border: 1px solid #e8e2da;
    padding: 12px;
    text-align: left;
}

.bp-entry-content iframe {
    max-width: 100%;
}

.bp-related-posts {
    margin-top: 54px;
}

.bp-empty {
    color: #666;
    font-size: 16px;
}

.bp-cat-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 8px;
    vertical-align: middle;
    flex: 0 0 auto;
}

.bp-category-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #808080;
}

.bp-category-hero-icon-wrap {
    margin-bottom: 16px;
}

.bp-category-hero-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.bp-single-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bp-single-category-pill-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex: 0 0 auto;
}

.bp-card-image {
    position: relative;
}

.bp-card-category-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(247, 148, 29, .95);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.bp-card-category-badge-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 auto;
}

.bp-single-page-clean {
    background: #f3f3f3;
}

.bp-single-top {
    padding: 0px 0 12px;
    background: transparent;
}

.bp-breadcrumbs-single {
    margin-bottom: 28px;
    font-size: 13px;
    color: #b3b3b3;
    gap: 5px;
}

.bp-breadcrumbs-single a,
.bp-breadcrumbs-single span {
    color: #b3b3b3;
}

.bp-single-top-header {
    max-width: 1200px;
}

.bp-single-top-category {
    margin-bottom: 14px;
    color: #f7941d;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.bp-single-top-title {
    margin: 0 0 20px;
    color: #000;
    font-size: 35px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.bp-single-top-meta {
    margin-bottom: 8px;
}

.bp-single-top-meta .bp-card-date {
    color: #1d1d1f;
    font-size: 14px;
    gap: 10px;
}

.bp-single-top-meta .bp-card-date svg {
    width: 22px;
    height: 22px;
    color: #f7941d;
    fill: currentColor;
}

.bp-single-content-wrap-clean {
    padding: 30px 0 80px;
    background: #fafafa;
}

.bp-single-article-clean {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.bp-entry-content-elementor {
    font-size: initial;
    line-height: normal;
}

.bp-entry-content-elementor .elementor {
    max-width: 100%;
}

/* LAYOUT */
.bp-single-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: start;
}

.bp-box {
    background: #e9e9e9;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
}

.bp-box-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
}

.bp-box-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #f7941d;
    margin-top: 12px;
}

.bp-box-title.b-gray::after {
    background: #ccc;
}

/* RECIENTES */
.bp-recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.bp-recent-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.bp-recent-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.bp-recent-body {
    flex: 1;
}

.bp-card-date {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bp-card-date svg {
    width: 16px;
    height: 16px;
    color: #f7941d;
}

/* TAGS */
.bp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.bp-tag {
    background: #ffffff;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    text-decoration: none;
    color: #5d5d5d;
    font-weight: 500;
    transition: .2s;
}

.bp-tag:hover {
    background: #f7941d;
    color: #fff;
}

/* BANNER */
.bp-sidebar-banner {
    position: relative;
}

.bp-sidebar-banner img {
    width: 100%;
    display: block;
    margin-top: 1rem;
}

.bp-banner-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    background: #f7941d;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bp-banner-arrow svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* CONTENIDO */
.bp-single-main {
    width: 100%;
}

.btn-arrow-down-white {
    background: url(../assets/img/ico-arrow-down-white.svg) #ed8f27 no-repeat center;
    background-size: 10px;
    border: none !important;
    border-radius: 8px;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
}

.excerpt-pymes p::before {
    content: "";
    background: url(../assets/img/ico-quote-1.svg) no-repeat center;
    background-size: 22px;
    width: 30px;
    height: 28px;
    position: absolute;
    top: -19px;
    left: -10px;
}

.excerpt-pymes p::after {
    content: "";
    background: url(../assets/img/ico-quote-2.svg) no-repeat center;
    background-size: 22px;
    width: 28px;
    height: 22px;
    position: absolute;
    bottom: -5px;
    right: -5px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .bp-single-layout {
        grid-template-columns: 1fr;
    }

    .bp-single-sidebar {
        position: relative;
        top: auto;
        order: 2;
    }

    .bp-single-main {
        order: 1;
    }
}

@media (max-width: 767px) {
    .bp-box {
        padding: 18px;
        border-radius: 16px;
    }

    .bp-box-title {
        font-size: 18px;
    }

    .bp-recent-thumb img {
        width: 60px;
        height: 60px;
    }

    .bp-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 1024px) {
    .bp-single-top-title {
        font-size: 48px;
    }

    .bp-breadcrumbs-single {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .bp-single-top {
        padding: 22px 0 8px;
    }

    .bp-breadcrumbs-single {
        margin-bottom: 18px;
        font-size: 14px;
        gap: 8px;
    }

    .bp-single-top-category {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .bp-single-top-title {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 16px;
    }

    .bp-single-top-meta .bp-card-date {
        font-size: 14px;
    }

    .bp-single-top-meta .bp-card-date svg {
        width: 18px;
        height: 18px;
    }

    .bp-single-content-wrap-clean {
        padding: 10px 0 48px;
    }
}

@media (max-width: 1200px) {
    .bp-card-grid-category {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bp-hero-title-line,
    .bp-hero-highlight {
        font-size: 72px;
    }

    .bp-category-title {
        font-size: 58px;
    }

    .bp-single-title {
        font-size: 48px;
    }
}

@media (max-width: 1024px) {
    .bp-blog-layout {
        grid-template-columns: 1fr;
    }

    .bp-sidebar,
    .bp-single-sidebar {
        position: static;
    }

    .bp-card-grid-home {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bp-card-grid-category {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bp-section-header h2 {
        font-size: 38px;
    }

    .bp-single-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .bp-container,
    .bp-container-narrow,
    .bp-container-single {
        width: min(calc(100% - 28px), 100%);
    }

    .bp-hero {
        min-height: 360px;
    }

    .bp-hero-inner {
        padding: 0 0 50px;
    }

    .bp-hero-title-line,
    .bp-hero-highlight {
        font-size: 48px;
    }

    .bp-category-title {
        font-size: 42px;
    }

    .bp-single-title {
        font-size: 34px;
    }

    .bp-hero-copy p,
    .bp-single-excerpt {
        font-size: 16px;
    }

    .bp-blog-content,
    .bp-single-content-wrap {
        padding: 36px 0 64px;
    }

    .bp-box {
        padding: 22px 18px;
    }

    .bp-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .bp-section-header h2 {
        font-size: 32px;
    }

    .bp-card-grid-home,
    .bp-card-grid-category {
        grid-template-columns: 1fr;
    }

    .bp-card-title {
        min-height: auto;
    }

    .bp-breadcrumbs {
        gap: 8px;
        font-size: 14px;
    }

    .bp-single-article {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .bp-entry-content {
        font-size: 16px;
    }

    .bp-entry-content h2 {
        font-size: 28px;
    }

    .bp-entry-content h3 {
        font-size: 24px;
    }

    .bp-entry-content h4 {
        font-size: 20px;
    }
}