/* =========================================
   BLOG SINGLE HEADER
   ========================================= */

.sahadev-blog-single-header,
.sahadev-blog-archive-header {
    width: 100%;
    background: linear-gradient(135deg, #691624a6, #8e4d0b99);
    color: #f5eee4;
}

.sahadev-blog-header-container {
    width: 100%;
    margin: 0 auto;
    padding: 45px 0 38px;
    max-width: 1152px;
}


/* =========================================
      BREADCRUMB
      ========================================= */

.sahadev-blog-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 27px;
    font-family: 'Lora', serif;
    font-size: 12px;
    line-height: 1.5;

    color: #c9b9ad;
}

.sahadev-blog-breadcrumb a {
    color: #d5c5b8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.sahadev-blog-breadcrumb a span {
    display: inline-flex;
    align-items: center;
}

.sahadev-blog-breadcrumb a:hover {
    color: #e1a925;
}

.sahadev-breadcrumb-arrow {
    color: #a58e80;
    font-size: 16px;
    line-height: 1;
}

.sahadev-breadcrumb-current {
    max-width: 380px;

    overflow: hidden;

    color: #f0e6dc;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================
      META
      ========================================= */

.sahadev-blog-header-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin: 0 0 17px;

    font-family: 'Lora', serif;
    font-size: 11px;

    color: #d4c3b7;
}

.sahadev-blog-category {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(225, 169, 37, 0.14);
    color: #e1a925 !important;
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sahadev-blog-category span {
    display: inline-flex;
    align-items: center;
}

.sahadev-blog-category:hover {
    background: rgba(225, 169, 37, 0.22);

    color: #f5c84a !important;
}

.sahadev-blog-reading-time,
.sahadev-blog-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sahadev-blog-reading-time span {
    display: inline-flex;
    align-items: center;
}


/* =========================================
      TITLE
      ========================================= */

.sahadev-blog-header-title {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0;
    color: #f7f0e7;
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.3px;
}

.sahadev-blog-title-icon {
    flex: 0 0 auto;

    margin-top: 3px;

    color: #ffb300;

    font-family: Arial, sans-serif;
    font-size: 31px;
    line-height: 1;
}


/* =========================================
      LOCATION
      ========================================= */

.sahadev-blog-location {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    color: hsl(0deg 0% 100% / 70%);
    font-family: 'Lora', serif;
    font-size: 14px;
    line-height: 20px;
}

.sahadev-blog-location span {
    display: inline-flex;
    align-items: center;
}


/* =========================================
      DIVIDER
      ========================================= */

.sahadev-blog-header-divider {
    width: 100%;
    height: 1px;

    margin: 27px 0 16px;

    background: rgba(255, 255, 255, 0.15);
}


/* =========================================
      AUTHOR
      ========================================= */

.sahadev-blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sahadev-blog-author-image {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    overflow: hidden;

    border: 1px solid #e1a925;

    border-radius: 50%;
}

.sahadev-blog-author-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.sahadev-blog-author-content {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.sahadev-blog-author-content strong {
    color: #f4e9dd;

    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.sahadev-blog-author-content span {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Lora', serif;
    font-size: 12px;
    line-height: 16px;
}


/* =========================================
      CATEGORY ARCHIVE DESCRIPTION
      ========================================= */

.sahadev-blog-category-description {
    max-width: 650px;
    margin: 14px 0 0;
    color: #d7c6b9;
    font-family: 'Lora', serif;
    font-size: 14px;
    line-height: 1.7;
}

.single-post .featured-image {
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 32px;
    width: 100%;
    height: 500px;
}


/* =========================================
      TABLET
      ========================================= */

@media (max-width: 991px) {

    .sahadev-blog-header-container {
        padding: 38px 0 34px;
    }

    .sahadev-blog-header-title {
        font-size: 34px;
    }

    .single-post .featured-image {
        height: 400px;
    }
}


/* =========================================
      MOBILE
      ========================================= */

@media (max-width: 767px) {

    .sahadev-blog-header-container {
        padding: 30px 0;
    }

    .sahadev-blog-breadcrumb {
        gap: 5px;

        margin-bottom: 22px;

        font-size: 10px;
    }

    .sahadev-breadcrumb-current {
        max-width: 180px;
    }

    .sahadev-blog-header-meta {
        gap: 8px;

        margin-bottom: 14px;

        font-size: 10px;
    }

    .sahadev-blog-header-title {
        gap: 7px;

        font-size: 27px;
        line-height: 1.12;
    }

    .sahadev-blog-title-icon {
        font-size: 23px;
    }

    .sahadev-blog-location {
        margin-top: 13px;

        font-size: 12px;
    }

    .sahadev-blog-header-divider {
        margin: 22px 0 14px;
    }

    .sahadev-blog-author-image {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }

    .sahadev-blog-author-content strong {
        font-size: 12px;
    }

    .sahadev-blog-author-content span {
        font-size: 10px;
    }

    .sahadev-blog-category-description {
        font-size: 12px;
        line-height: 1.6;
    }

    .single-post .featured-image {
        height: 320px;
    }
}