/* ===================================
   Inner Hero
   =================================== */
#dd-inner-hero {
    background-color: var(--main);
    align-items: stretch;
    min-height: 500px;
}

.inner-hero-content {
    width: 58.33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding-top: 45px;
    padding-bottom: 45px;
    padding-right: 60px;
}

.inner-hero-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inner-hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Badge */
.inner-hero-badge {
    display: flex;
    align-items: center;
    gap: 16px;
}

.inner-hero-badge-text {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--txt-light);
    margin: 0;
    max-width: 135px;
}

.inner-hero-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inner-hero-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Breadcrumb — Yoast */
.inner-hero-breadcrumb .breadcrumb-nav,
.inner-hero-breadcrumb .breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.inner-hero-breadcrumb a,
.inner-hero-breadcrumb span {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--txt-light);
}

.inner-hero-breadcrumb a {
    color: var(--cta);
}

.inner-hero-breadcrumb a:hover {
    color: var(--cta-hover);
}

/* Title */
.inner-hero-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 67px;
    color: var(--txt-light);
    margin: 0;
}

/* Body text */
.inner-hero-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: var(--txt-light);
    margin: 0;
    max-width: 520px;
}

/* Buttons row */
.inner-hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Right image column */
.inner-hero-img-wrap {
    width: 41.67%;
    overflow: hidden;
    flex-shrink: 0;
    flex-grow: 1;
}

.inner-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===================================
   Inner Hero — Responsive
   =================================== */
@media screen and (max-width: 1600px) {
    .inner-hero-title {
        font-size: 40px;
        line-height: 56px;
    }
}

@media screen and (max-width: 1400px) {
    .inner-hero-content {
        padding-right: 40px;
    }

    .inner-hero-title {
        font-size: 36px;
        line-height: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .inner-hero-content {
        padding-right: 30px;
        gap: 16px;
    }

    .inner-hero-title {
        font-size: 32px;
        line-height: 45px;
    }
}

@media screen and (max-width: 991px) {
    #dd-inner-hero {
        flex-direction: column;
        min-height: auto;
    }

    .inner-hero-content {
        width: 100%;
        padding-right: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .inner-hero-img-wrap {
        width: 100%;
        height: 320px;
        flex-shrink: unset;
    }
}

@media screen and (max-width: 767px) {
    .inner-hero-title {
        font-size: 28px;
        line-height: 38px;
    }

    .inner-hero-btns a {
        width: 100%;
        justify-content: center;
    }

    .inner-hero-btns {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .inner-hero-img-wrap {
        height: 260px;
    }
}

@media screen and (max-width: 600px) {
    .inner-hero-content {
        padding-top: 30px;
        padding-bottom: 30px;
        gap: 14px;
    }

    .inner-hero-title {
        font-size: 26px;
        line-height: 34px;
    }

    .inner-hero-text {
        font-size: 15px;
    }

    .inner-hero-img-wrap {
        height: 220px;
    }
}

/* ===================================
   404 Page
   =================================== */
.error-404 {
    padding-top: 60px;
    padding-bottom: 80px;
    float: left;
    width: 100%;
}

.error-404 .page-content {
    display: flex;
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
}

.error-404 .page-content > * {
    flex: 1;
}

.error-404 .widget-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 31px;
    color: var(--main);
    margin: 0 0 16px;
}

.error-404 .widget_recent_entries .widget-title {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bckg);
}

.error-404 ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.error-404 ul li a {
    font-size: 15px;
    font-weight: 400;
    color: var(--main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-404 ul li a::before {
    content: '→';
    color: var(--cta);
    font-weight: 600;
}

.error-404 ul li a:hover {
    color: var(--main-hover);
}

/* ===================================
   Blog Archive
   =================================== */
#dd-blog-archive {
    padding-top: 80px;
    padding-bottom: 80px;
    float: left;
    width: 100%;
    background-color: var(--txt-light);
}

#dd-blog-archive .blogs-holder {
    overflow: hidden;
    flex: unset;
    max-width: 100%;
    gap: 0;
    width: 100%;
}

#dd-blog-archive .single-blog {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 15px;
    margin-bottom: 30px;
}

#dd-blog-archive .dd-pagination-holder {
    float: left;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 600px) {
    #dd-blog-archive {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}
