/* =========================================================
   ENDE HOLIDAYS
   BLOG DETAIL — PREMIUM EDITORIAL FINAL
========================================================= */


/* =========================================================
   RESET / BASE
========================================================= */

.blog-detail-page,
.blog-detail-page * ,
.blog-detail-page *::before,
.blog-detail-page *::after {
    box-sizing: border-box;
}

.blog-detail-page {
    width: 100%;
    padding: 34px 0 90px;
    background: #fff;
    color: #202020;
}

.blog-detail-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.blog-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 34px;

    color: #8b8b8b;
    font-size: 13px;
    line-height: 1.5;
}

.blog-detail-breadcrumb a {
    color: #777;
    text-decoration: none;

    transition: color .2s ease;
}

.blog-detail-breadcrumb a:hover {
    color: #e99f24;
}

.blog-detail-breadcrumb > span {
    color: #c8c8c8;
}

.blog-detail-breadcrumb .current {
    max-width: 430px;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    color: #999;
}


/* =========================================================
   ARTICLE HEADER
========================================================= */

.blog-detail-header {
    max-width: 930px;
    margin: 0 auto;
    padding: 10px 0 36px;

    text-align: center;
}


/* =========================================================
   ARTICLE LABEL
========================================================= */

.blog-detail-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 17px;

    color: #e99f24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1;
    text-transform: uppercase;
}

.blog-detail-label span {
    display: block;

    width: 24px;
    height: 3px;

    border-radius: 20px;
    background: #e99f24;
}


/* =========================================================
   ARTICLE TITLE
========================================================= */

.blog-detail-header h1 {
    margin: 0;

    color: #171717;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -1.4px;
}


/* =========================================================
   ARTICLE META
========================================================= */

.blog-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 21px;

    color: #858585;
    font-size: 14px;
}

.blog-detail-meta-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #e99f24;
}

.blog-detail-meta-separator {
    color: #d1d1d1;
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.blog-detail-featured {
    width: 100%;
    margin: 0 auto 58px;

    overflow: hidden;

    border-radius: 20px;
    background: #f5f5f5;

    box-shadow:
        0 15px 45px rgba(0, 0, 0, .08);
}

.blog-detail-featured img {
    display: block;

    width: 100%;
    max-height: 560px;
    height: auto;

    object-fit: cover;
}


/* =========================================================
   ARTICLE LAYOUT
========================================================= */

.blog-detail-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 820px)
        minmax(0, 260px);

    justify-content: center;
    align-items: start;

    gap: 60px;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.blog-detail-content {
    width: 100%;

    color: #333;
    font-size: 17px;
    line-height: 1.85;
}

.blog-detail-content > *:first-child {
    margin-top: 0;
}


/* =========================================================
   CONTENT HEADINGS
========================================================= */

.blog-detail-content h2 {
    margin: 42px 0 16px;

    color: #171717;

    font-size: 29px;
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -.4px;
}

.blog-detail-content h3 {
    margin: 34px 0 13px;

    color: #1c1c1c;

    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
}

.blog-detail-content h4 {
    margin: 28px 0 12px;

    color: #222;

    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   PARAGRAPH / TEXT
========================================================= */

.blog-detail-content p {
    margin: 0 0 21px;
}

.blog-detail-content strong {
    color: #202020;
    font-weight: 700;
}

.blog-detail-content em {
    color: #555;
}


/* =========================================================
   LINKS
========================================================= */

.blog-detail-content a {
    color: #d98d12;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    transition: color .2s ease;
}

.blog-detail-content a:hover {
    color: #b97508;
}


/* =========================================================
   LIST
========================================================= */

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 0 0 25px;
    padding-left: 28px;
}

.blog-detail-content li {
    margin-bottom: 9px;
    padding-left: 4px;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.blog-detail-content blockquote {
    margin: 32px 0;
    padding: 23px 27px 23px 30px;

    border-left: 4px solid #e99f24;
    border-radius: 0 12px 12px 0;

    background: #fff8ed;

    color: #4a4a4a;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
}

.blog-detail-content blockquote p {
    margin-bottom: 0;
}


/* =========================================================
   CONTENT IMAGES
========================================================= */

.blog-detail-content img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 30px auto;

    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.blog-detail-content figure {
    margin: 32px 0;
}

.blog-detail-content figure img {
    margin: 0;
}

.blog-detail-content figcaption {
    margin-top: 9px;

    color: #888;
    font-size: 13px;
    text-align: center;
}


/* =========================================================
   TABLE
========================================================= */

.blog-detail-content table {
    width: 100%;
    margin: 30px 0;

    border-collapse: collapse;

    font-size: 15px;
}

.blog-detail-content th,
.blog-detail-content td {
    padding: 12px 14px;

    border: 1px solid #e6e6e6;

    text-align: left;
}

.blog-detail-content th {
    background: #faf7f1;
    font-weight: 700;
}


/* =========================================================
   SIDEBAR
========================================================= */

.blog-detail-sidebar {
    position: sticky;
    top: 105px;

    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 30px;
}


/* =========================================================
   SIDEBAR BLOCK
========================================================= */

.blog-sidebar-block {
    padding-bottom: 28px;

    border-bottom: 1px solid #eeeeee;
}

.blog-sidebar-block:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}


/* =========================================================
   SIDEBAR EYEBROW
========================================================= */

.blog-sidebar-eyebrow {
    margin-bottom: 7px;

    color: #e99f24;

    font-size: 10px;
    font-weight: 750;
    letter-spacing: .16em;
    line-height: 1.3;
    text-transform: uppercase;
}


/* =========================================================
   SIDEBAR HEADING
========================================================= */

.blog-sidebar-heading {
    margin: 0 0 17px;

    color: #171717;

    font-size: 19px;
    font-weight: 750;
    line-height: 1.3;
    letter-spacing: -.25px;
}

.blog-sidebar-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}


/* =========================================================
   SEARCH
========================================================= */

.blog-sidebar-search {
    padding: 22px;

    border: 1px solid #eee6da;
    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #fffaf2 0%,
            #ffffff 100%
        );
}

.blog-sidebar-search .blog-sidebar-heading {
    margin-bottom: 16px;
}


/* =========================================================
   SEARCH FORM
========================================================= */

.blog-search-form {
    display: flex;

    width: 100%;
    height: 45px;

    overflow: hidden;

    border: 1px solid #e5e5e5;
    border-radius: 9px;

    background: #fff;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.blog-search-form:focus-within {
    border-color: #e99f24;

    box-shadow:
        0 0 0 3px rgba(233, 159, 36, .09);
}

.blog-search-form input {
    flex: 1;
    min-width: 0;

    padding: 0 12px;

    border: 0;
    outline: 0;

    background: transparent;

    color: #333;
    font-family: inherit;
    font-size: 12px;
}

.blog-search-form input::placeholder {
    color: #aaa;
}

.blog-search-form button {
    position: relative;

    width: 44px;
    flex-shrink: 0;

    border: 0;

    background: #e99f24;

    cursor: pointer;

    transition: background .2s ease;
}

.blog-search-form button:hover {
    background: #d98d12;
}


/* Search icon */

.blog-search-form button span {
    position: absolute;

    top: 14px;
    left: 14px;

    width: 13px;
    height: 13px;

    border: 2px solid #fff;
    border-radius: 50%;
}

.blog-search-form button span::after {
    content: "";

    position: absolute;

    right: -6px;
    bottom: -3px;

    width: 7px;
    height: 2px;

    border-radius: 10px;

    background: #fff;

    transform: rotate(45deg);
}


/* =========================================================
   CATEGORY
========================================================= */

.blog-category-list {
    display: flex;
    flex-direction: column;
}

.blog-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 11px 0;

    border-bottom: 1px solid #f1f1f1;

    color: #555;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.blog-category-item:first-child {
    padding-top: 0;
}

.blog-category-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.blog-category-item:hover {
    padding-left: 5px;
    color: #df951b;
}

.blog-category-name {
    min-width: 0;
}

.blog-category-arrow {
    flex-shrink: 0;

    color: #c6c6c6;
    font-size: 16px;

    transition:
        color .2s ease,
        transform .2s ease;
}

.blog-category-item:hover .blog-category-arrow {
    color: #e99f24;
    transform: translateX(4px);
}


/* =========================================================
   TAGS
========================================================= */

.blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.blog-tag-item {
    display: inline-flex;
    align-items: center;

    min-height: 29px;
    padding: 5px 9px;

    border: 1px solid #e9e9e9;
    border-radius: 6px;

    background: #fafafa;

    color: #777;

    font-size: 10px;
    font-weight: 650;
    line-height: 1.3;
    text-decoration: none;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.blog-tag-item:hover {
    border-color: #e99f24;

    background: #fff8ed;

    color: #d88c12;

    transform: translateY(-1px);
}


/* =========================================================
   LATEST ARTICLES
========================================================= */

.blog-latest-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.blog-latest-item {
    display: grid;

    grid-template-columns:
        78px
        minmax(0, 1fr);

    gap: 12px;

    align-items: start;
}

.blog-latest-image {
    display: block;

    width: 78px;
    height: 65px;

    overflow: hidden;

    border-radius: 8px;

    background: #f3f3f3;
}

.blog-latest-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.blog-latest-item:hover .blog-latest-image img {
    transform: scale(1.06);
}

.blog-latest-content {
    min-width: 0;
}

.blog-latest-content time {
    display: block;

    margin-bottom: 4px;

    color: #e99f24;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: .02em;
}

.blog-latest-content h4 {
    margin: 0;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.blog-latest-content h4 a {
    display: -webkit-box;

    overflow: hidden;

    color: #333;
    text-decoration: none;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    transition: color .2s ease;
}

.blog-latest-content h4 a:hover {
    color: #df951b;
}


/* =========================================================
   SIDEBAR CTA
========================================================= */

.blog-sidebar-cta {
    position: relative;

    overflow: hidden;

    padding: 27px 24px 25px;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #2b2925 0%,
            #181715 100%
        );

    color: #fff;

    box-shadow:
        0 16px 35px rgba(0, 0, 0, .13);
}

.blog-sidebar-cta::before {
    content: "";

    position: absolute;

    top: -60px;
    right: -55px;

    width: 130px;
    height: 130px;

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
}

.blog-sidebar-cta::after {
    content: "";

    position: absolute;

    top: -40px;
    right: -30px;

    width: 90px;
    height: 90px;

    border: 1px solid rgba(233, 159, 36, .18);
    border-radius: 50%;
}

.blog-sidebar-cta-decor {
    position: absolute;

    top: 19px;
    right: 21px;

    color: #e99f24;
    font-size: 19px;
}

.blog-sidebar-cta-eyebrow {
    position: relative;
    z-index: 1;

    margin-bottom: 10px;

    color: #e99f24;

    font-size: 9px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.blog-sidebar-cta h3 {
    position: relative;
    z-index: 1;

    max-width: 190px;

    margin: 0 0 12px;

    color: #fff;

    font-size: 21px;
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -.35px;
}

.blog-sidebar-cta p {
    position: relative;
    z-index: 1;

    margin: 0 0 20px;

    color: #c7c4bf;

    font-size: 11px;
    line-height: 1.7;
}

.blog-sidebar-cta-link {
    position: relative;
    z-index: 1;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #fff;

    font-size: 11px;
    font-weight: 750;
    text-decoration: none;
}

.blog-sidebar-cta-link span {
    color: #e99f24;
    font-size: 17px;

    transition: transform .2s ease;
}

.blog-sidebar-cta-link:hover {
    color: #fff;
}

.blog-sidebar-cta-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   RELATED BLOG
========================================================= */

.related-blog-section {
    margin-top: 85px;
    padding-top: 55px;

    border-top: 1px solid #eeeeee;
}

.related-blog-heading {
    max-width: 650px;
    margin-bottom: 30px;
}

.related-blog-heading .blog-detail-label {
    margin-bottom: 10px;
}

.related-blog-heading h2 {
    margin: 0 0 8px;

    color: #171717;

    font-size: 31px;
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -.6px;
}

.related-blog-heading p {
    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   RELATED GRID
========================================================= */

.related-blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   RELATED CARD
========================================================= */

.related-blog-card {
    overflow: hidden;

    border: 1px solid #eeeeee;
    border-radius: 16px;

    background: #fff;

    box-shadow:
        0 7px 25px rgba(0, 0, 0, .045);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.related-blog-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .09);
}


/* =========================================================
   RELATED IMAGE
========================================================= */

.related-blog-image {
    display: block;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #f4f4f4;
}

.related-blog-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .45s ease;
}

.related-blog-card:hover .related-blog-image img {
    transform: scale(1.05);
}


/* =========================================================
   RELATED BODY
========================================================= */

.related-blog-body {
    padding: 19px 20px 21px;
}

.related-blog-date {
    margin-bottom: 8px;

    color: #e99f24;

    font-size: 11px;
    font-weight: 700;
}

.related-blog-body h3 {
    margin: 0 0 9px;

    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -.2px;
}

.related-blog-body h3 a {
    color: #202020;
    text-decoration: none;

    transition: color .2s ease;
}

.related-blog-body h3 a:hover {
    color: #df951b;
}

.related-blog-body p {
    display: -webkit-box;

    margin: 0 0 15px;

    overflow: hidden;

    color: #777;

    font-size: 13px;
    line-height: 1.65;

    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.related-blog-read {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #d88c12;

    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.related-blog-read span {
    font-size: 16px;

    transition: transform .2s ease;
}

.related-blog-read:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .blog-detail-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .blog-detail-sidebar {
        position: static;

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 28px;
    }

    .blog-sidebar-search,
    .blog-sidebar-cta {
        grid-column: 1 / -1;
    }

    .blog-sidebar-block {
        padding-bottom: 0;
        border-bottom: 0;
    }

}


/* =========================================================
   RELATED TABLET
========================================================= */

@media (max-width: 850px) {

    .related-blog-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .blog-detail-page {
        padding: 25px 0 65px;
    }

    .blog-detail-page .container {
        width: min(100% - 28px, 1180px);
    }

    .blog-detail-breadcrumb {
        margin-bottom: 25px;
        font-size: 12px;
    }

    .blog-detail-header {
        padding-bottom: 28px;
    }

    .blog-detail-header h1 {
        font-size: clamp(30px, 8vw, 40px);
        letter-spacing: -1px;
    }

    .blog-detail-meta {
        font-size: 13px;
    }

    .blog-detail-featured {
        margin-bottom: 42px;
        border-radius: 15px;
    }

    .blog-detail-content {
        font-size: 16px;
        line-height: 1.8;
    }

    .blog-detail-sidebar {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }

    .blog-sidebar-block {
        padding-bottom: 26px;
        border-bottom: 1px solid #eeeeee;
    }

    .blog-sidebar-search {
        padding: 20px;
    }

    .blog-sidebar-heading {
        font-size: 18px;
    }

    .blog-latest-item {
        grid-template-columns:
            88px
            minmax(0, 1fr);

        gap: 13px;
    }

    .blog-latest-image {
        width: 88px;
        height: 70px;
    }

    .blog-sidebar-cta {
        padding: 25px 22px;
    }

    .related-blog-section {
        margin-top: 55px;
        padding-top: 38px;
    }

    .related-blog-heading h2 {
        font-size: 25px;
    }

    .related-blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .blog-sidebar-cta h3 {
        font-size: 20px;
    }

    .blog-latest-item {
        grid-template-columns:
            78px
            minmax(0, 1fr);
    }

    .blog-latest-image {
        width: 78px;
        height: 64px;
    }

}