/* Design guide — blog pages (no banner) */

.blognew-page,
.blognew-detail-page {
    /* --blog-primary: #041e41; */
    --blog-secondary: #00bed6;
    --blog-pink: #cd5f91;
    --blog-pink-dark: #be588e;
    --blog-blue: #e6f0f5;
    --blog-light-blue: #f8f9fa;
    --blog-paragraph: #3c3c3c;
}

.blognew-page h1,
.blognew-page h2,
.blognew-page h3,
.blognew-detail-page h1,
.blognew-detail-page h2,
.blognew-detail-page h3 {
    color: var(--blog-heading);
}

.blognew-page a,
.blognew-detail-page a {
    color: var(--blog-primary);
}

.blognew-page a:hover,
.blognew-detail-page a:hover {
    color: var(--blog-pink);
}

/* Shared blog utilities */
.blognew-page .text-underline,
.blognew-detail-page .text-underline {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blognew-page .text-underline:hover,
.blognew-detail-page .text-underline:hover {
    text-decoration: none;
}

.blognew-page .text-charcoal,
.blognew-detail-page .text-charcoal {
    color: #3c3c3c;
}

/* Blog listing page — WordPress replica (scoped to .blognew-page) */

.blognew-page .blog-container,
.blognew-detail-page .blog-container {
    width: 100%;
    max-width: 100%;
}

.blognew-page.blog-section {
    padding: 20px 0;
}

.blognew-page .blog-top-area {
    margin: 0.75rem 0 0.5rem;
    padding-bottom: 0;
}

.blognew-page .blog-top-area h1 {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: 300;
    line-height: 1.35;
    color: var(--blog-heading);
}

.blognew-page .blog-search-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.blognew-page .top-search {
    position: relative;
    width: 100%;
    max-width: 260px;
}

.blognew-page .top-search form {
    position: relative;
}

.blognew-page .input-search {
    width: 100%;
    padding: 8px 42px 8px 12px;
    background: #eceae7;
    border: none;
    outline: none;
    font-size: 16px;
    
}

.blognew-page .top-search .search-submit.search-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 100%;
    border: none;
    background: #888;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding: 0;
}

.blognew-page .top-search .search-submit.search-icon:hover {
    background: var(--blog-pink);
}

.blognew-page .blog-social-area .social-icons,
.blognew-detail-page .blog-social-area .social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blognew-page .blog-social-area .social-icons a,
.blognew-detail-page .blog-social-area .social-icons a {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
}

.blognew-page .blog-social-area .social-icons a img,
.blognew-detail-page .blog-social-area .social-icons a img {
    width: 25px;
    height: 25px;
    display: block;
}

.blognew-page .blog-category-area {
    border-bottom: 0;
    padding-bottom: 0.35rem;
    margin-bottom: 0;
}

.blognew-page .blog-category-area + .blog-category-area.newDesign {
    margin-top: 0.25rem;
}

.blognew-page .blog-category-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blognew-page .blog-category-area ul.list-inline li {
    display: inline-block;
    padding: 0;
}

.blognew-page .blog-category-area ul li:not(:last-child)::after {
    content: "|";
    padding: 0 1rem;
}

.blognew-page .blog-category-area ul li a {
    text-decoration: none;
    font-size: 16px;
}

.blognew-page .blog-category-area ul li:hover a,
.blognew-page .blog-category-area ul li.active a {
    border-bottom: 1px solid var(--blog-pink) !important;
}

.blognew-page .blog-category-area ul li.active a {
    font-weight: 500;
}

.blognew-page .blog-category-area.newDesign {
    margin-bottom: 0.75rem;
}

.blognew-page .blog-category-area.newDesign ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    border-top: 1px solid #878585;
    border-bottom: 1px solid #878585;
    padding: 5px 0 0;
}

.blognew-page .blog-category-area.newDesign ul li {
    margin-bottom: 4px;
    padding: 0 16px 0 0;
    position: relative;
}

.blognew-page .blog-category-area.newDesign ul li:not(:last-child)::before {
    content: "|";
    position: absolute;
    right: -5px;
    font-weight: 300;
    padding: 0 1rem;
}

.blognew-page .blog-category-area.newDesign ul li::after {
    display: none;
}

.blognew-page .blog-category-area.newDesign ul li a:hover {
    border-bottom: 1px solid var(--blog-pink) !important;
}

.blognew-page .blog-listing {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 0;
    align-items: start;
}

.blognew-page .blog-item {
    min-width: 0;
}

.blognew-page .blog-item .blog {
    display: flex;
    flex-direction: column;
    background: #f4f4ef;
}

.blognew-page .blog-item .post-thumbnail {
    overflow: hidden;
    min-height: auto;
    aspect-ratio: 16 / 10;
}

.blognew-page .blog-item .post-thumbnail a {
    display: block;
    height: 100%;
}

.blognew-page .blog-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 300ms ease-in-out;
}

.blognew-page .blog-item .post-thumbnail:hover img {
    transform: scale(1.05);
}

.blognew-page .blog-item .post-content {
    padding: 14px 18px 18px;
    display: flex;
    flex-direction: column;
}

.blognew-page .blog-item .post-meta,
.blognew-page .blog-item .post-title,
.blognew-page .blog-item .post-excerpt {
    flex-shrink: 0;
}

.blognew-page .blog-item .post-meta {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: #6c6c6c;
}

.blognew-page .blog-item .post-meta span {
    display: inline;
}

.blognew-page .blog-item .post-meta span:not(:last-child) {
    border-right: 2px solid #767676;
    padding-right: 6px;
    margin-right: 6px;
}

.blognew-page .blog-item .post-meta a {
    color: inherit;
}

.blognew-page .blog-item .post-meta a:hover {
    color: var(--blog-pink);
}

.blognew-page .blog-item .post-title h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blognew-page .blog-item .post-title a {
    color: var(--blog-heading);
    text-decoration: none;
}

.blognew-page .blog-item .post-title a:hover {
    color: var(--blog-pink);
}

.blognew-page .blog-item .post-excerpt {
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.55;
}

.blognew-page .blog-item .post-content > a:last-child {
    font-size: 16px;
    color: var(--blog-heading);
    text-decoration: none;
}

.blognew-page .blog-item .post-content > a:last-child:hover {
    color: var(--blog-pink);
}

@media (max-width: 991px) {
    .blognew-page.blog-section,
    .blognew-detail-page.blog-section,
    .blognew-detail-page section.singleBlog {
        padding: 30px 0;
    }

    .blognew-page .blog-top-area h1 {
        font-size: 30px;
    }

    .blognew-page .blog-listing {
        grid-template-columns: 1fr;
    }

    .blognew-page .blog-search-social {
        align-items: flex-start;
        margin-top: 1rem;
    }

    .blognew-page .top-search {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .blognew-page .blog-item .post-thumbnail {
        aspect-ratio: auto;
        max-height: none;
    }

    .blognew-page .blog-item .post-thumbnail img {
        height: auto;
    }
}

@media (max-width: 520px) {
    .blognew-page .blog-category-area.newDesign ul li {
        padding-right: 12px;
    }
}

/* ── Blog detail page ── */

.blognew-detail-page .blog-category-area {
    border-bottom: 1px solid #e4e4e3;
    padding-bottom: 1rem;
    margin-bottom: 0;
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.blognew-detail-page .blog-category-area ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blognew-detail-page .blog-category-area ul li {
    display: inline-block;
    padding: 0;
    margin-bottom: 0.5rem;
}

.blognew-detail-page .blog-category-area ul li::after {
    content: "|";
    padding: 0 1rem;
}

.blognew-detail-page .blog-category-area ul li:last-child::after {
    content: "";
    padding: 0;
}

.blognew-detail-page .blog-category-area ul li a {
    font-size: 16px;
    text-decoration: none;
}

.blognew-detail-page .blog-category-area ul li:hover a {
    border-bottom: 1px solid var(--blog-pink) !important;
}

.blognew-detail-page .blog-category-area ul li.active a {
    border-bottom: 1px solid var(--blog-pink) !important;
}

.blognew-detail-page .blog-detail {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 1rem;
}

.blognew-detail-page .blog-single {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 420px);
}

.blognew-detail-page .blog-single .post-content {
    padding: 0;
    background: none;
}

.blognew-detail-page .blog-single .post-meta {
    width: 100%;
    margin-bottom: 1.4rem;
    font-size: 14px;
}

.blognew-detail-page .blog-single .post-meta a {
    font-size: 14px;
    text-decoration: none;
}

.blognew-detail-page .blog-single .post-meta span {
    position: relative;
}

.blognew-detail-page .blog-single .post-meta span:not(:last-child)::after {
    content: "|";
    padding: 0 5px;
}

.blognew-detail-page .blog-single h1.heading-1 {
    font-size: xx-large;
    /* margin-bottom: 2rem; */
}

.blognew-detail-page .entry-content h2 {
    font-size: 30px;
    font-weight: 400;
    line-height: 32px;
    margin: 1rem 0 1rem;
}

.blognew-detail-page .entry-content h3 {
    font-size: 22px;
    font-weight: 400;
    line-height: 27px;
    margin: 1rem 0 1rem;
}

.blognew-detail-page .entry-content p,
.blognew-detail-page .entry-content li {
    margin-bottom: 1rem;
}

.blognew-detail-page .entry-content .beforAfterOuter {
    margin-top: 1.5rem;
}

.blognew-detail-page .entry-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.blognew-detail-page .entry-content img:not(.slider-image) {
    margin-top: 1.5rem;
}

.blognew-detail-page .entry-content .beforeAfter-slider img {
    margin-bottom: 0;
    margin-top: 0;
}

.blognew-detail-page .entry-content .beforeAfter-slider .slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    max-height: 500px;
    display: block;
}

.blognew-detail-page .entry-content .beforeAfter-slider .image-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--position);
    max-width: 100%;
    z-index: 1;
}

.blognew-detail-page .entry-content .beforAfterOuter .beforeAfter-slider {
    margin-bottom: 0;
}

.blognew-detail-page .entry-content .beforAfterOuter .beforeAfter-slider .slider-container {
    border-radius: 0;
}

.blognew-detail-page .entry-content .beforAfterOuter .beforeAfter-slider,
.blognew-detail-page .entry-content .beforAfterOuter .slider-container,
.blognew-detail-page .entry-content .beforAfterOuter .image-container {
    width: 100%;
}

.blognew-detail-page .entry-content .blog-youtube-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 1.5rem 0 2rem;
    overflow: hidden;
    background: #000;
}

.blognew-detail-page .entry-content .blog-youtube-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.blognew-detail-page .entry-content ul {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.blognew-detail-page .entry-content a {
    text-decoration: underline;
    color: var(--blog-primary);
}

.blognew-detail-page .entry-content a:hover {
    text-decoration: none;
    color: var(--blog-pink);
}

.blognew-detail-page .highlight_sec {
    padding: 10px 20px;
    background: #f2f2f2;
    border-radius: 5px;
    position: relative;
    margin-bottom: 1.5rem;
}

.blognew-detail-page .highlight_sec strong {
    color: var(--blog-pink);
}

.blognew-detail-page .highlight_sec::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 40%;
    border: 2px solid var(--blog-pink);
    border-bottom-width: 0;
    border-right-width: 0;
    border-top-left-radius: 4px;
}

.blognew-detail-page .highlight_sec::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 40%;
    border: 2px solid var(--blog-pink);
    border-top-width: 0;
    border-left-width: 0;
    border-bottom-right-radius: 4px;
}

.blognew-detail-page .highlight_sec ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.blognew-detail-page .entry-content .table-responsive,
.blognew-detail-page .entry-content .wp-block-table,
.blognew-detail-page .entry-content figure:has(> table) {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.blognew-detail-page .entry-content table {
    --bs-table-bg: #fff;
    --bs-table-color: #666;
    --bs-table-border-color: #212529;
    --bs-table-accent-bg: transparent;
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 1.5rem 0;
    font-size: 14px;
    font-weight: 300;
    border: 1px solid #212529;
    background: #fff;
}

.blognew-detail-page .entry-content .table-responsive table,
.blognew-detail-page .entry-content .wp-block-table table,
.blognew-detail-page .entry-content figure:has(> table) table {
    margin: 0;
}

.blognew-detail-page .entry-content table thead,
.blognew-detail-page .entry-content table thead tr,
.blognew-detail-page .entry-content table thead th,
.blognew-detail-page .entry-content table thead td,
.blognew-detail-page .entry-content table:not(:has(thead)) > tbody > tr:first-child > th,
.blognew-detail-page .entry-content table > tr:first-child > th {
    --bs-table-bg: #c65c8c;
    --bs-table-color: #fff;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-bg: #c65c8c;
    --bs-table-hover-bg: #c65c8c;
    background-color: #c65c8c !important;
    color: #fff !important;
    font-weight: 400;
    border: 1px solid #212529;
    padding: 15px;
    text-align: left;
    vertical-align: top;
    box-shadow: none !important;
}

.blognew-detail-page .entry-content table td,
.blognew-detail-page .entry-content table tbody th,
.blognew-detail-page .entry-content table tfoot th,
.blognew-detail-page .entry-content table tfoot td {
    border: 1px solid #212529;
    color: #666;
    padding: 15px;
    text-align: left;
    vertical-align: top;
    background-color: #fff;
}

.blognew-detail-page .entry-content table tbody td:first-child,
.blognew-detail-page .entry-content table tbody th:first-child {
    font-weight: 500;
    color: #3c3c3c;
}

.blognew-detail-page #shareBlog {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 2.5rem 0 1.5rem;
    padding-top: 0;
    border-top: none;
}

.blognew-detail-page #shareBlog h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: var(--blog-heading);
}

.blognew-detail-page #shareBlog .social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.blognew-detail-page #shareBlog .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    line-height: 0;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.blognew-detail-page #shareBlog .social-icons a:hover {
    opacity: 0.85;
}

.blognew-detail-page #shareBlog .social-icons a img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
}

.blognew-detail-page .authors.main-item-container {
    margin: 0 0 2rem;
    padding: 24px;
    border: 1px solid #e0e0e0;
}

.blognew-detail-page .blog-author-section-wrap {
    margin-top: 2rem;
    max-width: calc(100% - 420px);
    padding-right: 30px;
}

@media (max-width: 991px) {
    .blognew-detail-page .blog-author-section-wrap,
    .blognew-detail-page .panel-group.faq {
        max-width: 100%;
        padding-right: 0;
    }
}

.blognew-detail-page .authors .item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.blognew-detail-page .authors .item-img {
    flex: 0 0 160px;
    text-decoration: none;
    color: #3c3c3c;
}

.blognew-detail-page .authors .author-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.blognew-detail-page .authors .author-img-wrap img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
}

.blognew-detail-page .authors .author-role {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 8px 6px;
    text-align: center;
    line-height: 1.3;
}

.blognew-detail-page .authors .item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--blog-heading);
}

.blognew-detail-page .authors .disc {
    margin-bottom: 0;
    line-height: 1.65;
    font-weight: 400;
    font-size: 16px;
}

.blognew-detail-page .authors .disc.is-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blognew-detail-page .authors #readBtn,
.blognew-detail-page .authors #readlessBtn {
    color: #333;
    cursor: pointer;
    margin: 12px 0 0;
    font-weight: 600;
}

.blognew-detail-page .authors #readlessBtn {
    display: none;
}

.blognew-detail-page .panel-group.faq {
    margin-top: 2rem;
    background: transparent;
    padding: 0 30px 0 0;
    border-radius: 0;
    max-width: calc(100% - 420px);
}

.blognew-detail-page .panel-group.faq > h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--blog-heading);
}

.blognew-detail-page .panel-group.faq .panel {
    border: none;
    box-shadow: none;
    background: transparent;
    margin-bottom: 0;
}

.blognew-detail-page .panel-group.faq .panel-heading {
    padding: 0 20px;
    background: transparent;
    border: none;
    border-top: 1px solid #e8e8e8;
}

.blognew-detail-page .panel-group.faq .panel:first-of-type .panel-heading {
    border-top: none;
}

.blognew-detail-page .panel-group.faq .panel:has(.panel-collapse.show) .panel-heading {
    background: #f2f2f2;
    border-top: none;
    border-radius: 6px 6px 0 0;
    padding: 4px 20px 0;
}

.blognew-detail-page .panel-group.faq .panel-heading h2 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    border-bottom: none;
    color: var(--blog-heading);
}

.blognew-detail-page .panel-group.faq .panel-heading h2 a {
    display: block;
    padding: 18px 44px 18px 0;
    position: relative;
    
    text-decoration: none;
    font-weight: 600;
    line-height: 1.45;
}

.blognew-detail-page .panel-group.faq .panel-heading h2 a::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--blog-pink);
    line-height: 1;
}

.blognew-detail-page .panel-group.faq .panel-heading h2 a[aria-expanded="true"]::after {
    content: "−";
}

.blognew-detail-page .panel-group.faq .panel-collapse .panel-body {
    padding: 0 20px 24px;
    line-height: 1.65;
    font-size: 16px; 
    background: #fff;
}

.blognew-detail-page .panel-group.faq .panel:has(.panel-collapse.show) .panel-collapse .panel-body {
    padding: 14px 20px 24px;
}

.blognew-detail-page #sidebar {
    flex: 0 0 384px;
    max-width: 384px;
    position: sticky;
    top: 90px;
}

.blognew-detail-page #sidebar .widget-title {
    font-size: 30px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 1.25rem;
}

.blognew-detail-page #sidebar .related-post-wrap {
    background: #f4f4ef;
    padding: 24px 28px;
    margin-bottom: 1.5rem;
}

.blognew-detail-page #sidebar .related-post .blog-item {
    margin-bottom: 0;
}

.blognew-detail-page #sidebar .related-post .blog-item .post-title p {
    margin: 0 0 8px;
    line-height: 26px;
}

.blognew-detail-page #sidebar .related-post .blog-item .post-title a {
    color: var(--blog-heading);
    text-underline-offset: 3px;
}



.blognew-detail-page #sidebar .related-post .post-meta.with-dividers {
    font-size: 14px;
    color: #777;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #919191;
}

.blognew-detail-page #sidebar .related-post .post-meta.with-dividers a {
    color: inherit;
    text-decoration: none;
}

.blognew-detail-page #sidebar .related-post .post-meta.with-dividers span:not(:last-child)::after {
    content: "|";
    padding: 0 6px;
    color: #777;
}

.blognew-detail-page #sidebar .related-post .blog-item-last .post-meta.with-dividers {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.blognew-detail-page #sidebar .promotion-main {
    margin-top: 0;
}

.blognew-detail-page #sidebar .promotion {
    text-align: center;
    background: #eceae7;
    padding: 3rem 1.5rem;
    margin-top: 0;
}

.blognew-detail-page #sidebar .promotion h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--blog-heading);
}

.blognew-detail-page #sidebar .promotion .btn_sec a.btn.primary_btn:hover {
    color: #fff;
    background: #cd5f91;
    border-radius: 12px 3px 12px 2px;
    transition: 0.6s all ease;
}

.blognew-detail-page section.singleBlog {
    padding: 50px 0;
}

.blognew-detail-page .package-item.border-1 {
    border: 1px solid #e0e0e0;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.blognew-detail-page .package-item .package-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.blognew-detail-page .package-item.p5 {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blognew-detail-page .package-item .updatedtext {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.blognew-detail-page .package-item .updatedtext a {
    color: var(--blog-heading);
    text-decoration: none;
}

.blognew-detail-page .package-item .updatedtext a:hover {
    color: var(--blog-pink);
}

@media (max-width: 991px) {
    .blognew-detail-page .blog-detail {
        flex-direction: column;
    }

    .blognew-detail-page .blog-single,
    .blognew-detail-page #sidebar {
        max-width: 100%;
        flex: 1 1 auto;
        width: 100%;
    }

    .blognew-detail-page #sidebar {
        position: static;
    }

    .blognew-detail-page .authors .item {
        flex-direction: column;
    }

    /* .blognew-detail-page .blog-single h1.heading-1 {
        margin-bottom: 2rem;
    } */

    .blognew-detail-page .entry-content h2,
    .blognew-detail-page .panel-group.faq > h2,
    .blognew-detail-page #sidebar .widget-title {
        font-size: 30px;
        line-height: 32px;
    }

    .blognew-detail-page .entry-content h3,
    .blognew-detail-page #shareBlog h3 {
        font-size: 22px;
        line-height: 27px;
    }

    .blognew-detail-page .blog-category-area {
        margin-top: 1.25rem;
    }
}

/* Author archive page — match WP /blog/author/{slug}/ */
.blognew-author-page .blog-author-archive {
    margin: 1.25rem 0 2rem;
    padding: 24px;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.blognew-author-page .blog-author-archive .item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.blognew-author-page .blog-author-archive .item-img {
    flex: 0 0 160px;
}

.blognew-author-page .blog-author-archive .author-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.blognew-author-page .blog-author-archive .author-img-wrap img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
}

.blognew-author-page .blog-author-archive .author-role {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 8px 6px;
    text-align: center;
    line-height: 1.3;
}

.blognew-author-page .blog-author-archive .item-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--blog-heading);
}

.blognew-author-page .blog-author-archive .author-archive-bio {
    margin: 0;
    line-height: 1.65;
    font-size: 16px;
    font-weight: 400;
    color: var(--blog-paragraph);
}

.blognew-author-page .blog-author-archive .author-archive-bio p {
    margin: 0 0 1rem;
}

.blognew-author-page .blog-author-archive .author-archive-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .blognew-author-page .blog-author-archive .item {
        flex-direction: column;
    }

    .blognew-author-page .blog-author-archive .item-img {
        flex-basis: auto;
    }
}
