@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-Regular.woff2') format('woff2'),
        url('../assets/fonts/poppins/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/poppins/Poppins-Bold.woff2') format('woff2'),
        url('../assets/fonts/poppins/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* overflow: hidden; */
    height: 100%;
    width: 100%;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

p {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

a:active {
    color: inherit;
}

.flex-btn-primary {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #3F3F46;
}

.flex-btn-primary:hover {
    background: #27272A;
    color: #FFF;
}


a.flex-btn-primary {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #3F3F46;
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.07px;
}

a.flex-btn-primary:hover {
    background: #27272A;
    color: #FFF;
}

.flex-secondary-btn {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #F4F4F5;
}

a.flex-secondary-btn {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: #F4F4F5;
    color: var(--Zinc-900, #18181B);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.07px;
}

a.flex-secondary-btn:hover {
    background: #E4E4E7;
}

html {
    margin-top: 0 !important;
}

.flex-section-layout {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}


.flexable-root-layout {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #FAFAFA;
}

.flexable-root-layout .flexable-page-layout {
    display: flex;
}

.flexable-view-content-layout {
    overflow-x: hidden;
    overflow-y: auto;
    scroll-behavior: smooth;
    height: calc(100vh - 60px);
    width: 100%;
}


.flex-outline-btn {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: transparent;
}

a.flex-outline-btn {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background: transparent;
    color: var(--Zinc-900, #18181B);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.07px;
}

a.flex-outline-btn:hover {
    background: #FAFAFA;
}

/* this style used for Frequently Asked Questions section */
.frequently-asked-question-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 10px 0 40px;
}

.frequently-asked-question-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.frequently-asked-question-header h2 {
    color: var(--Zinc-900, #18181B);
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

.frequently-asked-question-list {
    display: flex;
    flex-direction: column;
}

.frequently-asked-question-item {
    display: flex;
    padding: 20px 0px;
    flex-direction: column;
    border-top: 1px solid #E4E4E7;
}

.frequently-asked-question-item.active {
    background: linear-gradient(180deg, rgba(230, 250, 235, 0.20) 0%, rgba(230, 250, 235, 0.00) 100%);
    border-top: 1px solid #B7EFC5;
}


.question-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.question-accordion-header h3 {
    color: var(--Zinc-900, #18181B);
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

.question-accordion-header .accordion-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.frequently-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.frequently-accordion-content p {
    color: #71717A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.faq_ul_list {
    list-style-type: disc;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq_ul_list li {
    color: #71717A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 10px;
}


/* curated user css */
.curated-created-container {
    display: flex;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    border-radius: 10px;
    background: #FFF;
}

.curated-created-container h3 {
    color: #71717A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.curated-created-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.curated-profile-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.curated-profile-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.curated-profile-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1 0 0;

}

.curated-profile-details span {
    color: #18181B;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
}

.curated-profile-details p {
    color: #3F3F46;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.last-updated-at {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #3F3F46;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0.06px;
}

.last-updated-at span {
    color: #18181B;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.07px;
}

.blog-header-theme-section {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #FFFFFF;
}


/* tooltip content */
.tooltip-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-family: sans-serif;
}

/* Tooltip text */
.tooltip-text {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    max-width: 200px;
    background-color: #131313;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.07px;
    border-radius: 4px;
    padding: 10px 16px;
    position: absolute;
    bottom: 125%;

    /* Position above the trigger */
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s;
    z-index: 10;
}

/* Arrow */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #111 transparent transparent transparent;
}

/* Show tooltip on hover */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* For LAST CARD → align tooltip to LEFT */
.tooltip-left .tooltip-text {
    left: auto;
    right: 0;
    transform: none;
}

.tooltip-left .tooltip-text::after {
    left: auto;
    right: 10px;
    /* arrow points near trigger */
    margin-left: 0;
}

@media screen and (max-width: 768px) {
    .curated-created-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .curated-profile-details span {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0.032px;
    }

    .curated-profile-details p {
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0.06px;
    }

    .curated-profile-info img {
        width: 40px;
        height: 40px;
    }

    .curated-created-container {
        gap: 15px;
    }

    .curated-profile-info {
        gap: 10px;
    }

    .frequently-accordion-content p {
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0.06px;
    }

    .faq_ul_list li {
        font-size: 12px;
        line-height: 15px;
        letter-spacing: 0.06px;
    }

    .question-accordion-header h3 {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }
}

.custom-blog-content p {
    color: #3F3F46 !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.custom-blog-main-title h2 {
    font-size: 32px !important;
}

.custom-blog-content h2 {
    color: #18181B;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.custom-blog-content h3 {
    color: #18181B;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.custom-blog-content ul li {
    color: #3F3F46 !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.custom-blog-main-section .wp-block-post-author-biography {
    color: #3F3F46;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 20px !important;
    letter-spacing: 0.06px;
}