/* Style for the post title */
.post-title {
    font-size: 2em;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

/* Container for the author info and read time */
.post-meta {
    display: flex;  
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.post-meta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

/* Style for author image */
.author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

/* Style for the author's name */
.author-name {
    margin-right: 15px;
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 36px; /* 225% */
}

/* Style for the read time */
.read-time {
    color: #9B9B9B;
    text-align: right;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 225% */
}

/* Center the whole content area */
.single-post .post {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers horizontally */
    justify-content: center; /* Centers vertically */
    text-align: center; /* Centers text */
}

/* Center the title at the top */
.single-post .entry-title {
    margin-bottom: 20px; /* Add space between title and other elements */
}

/* Center the author image and author text */
.single-post .author-info {
    display: flex;
    align-items: center; /* Aligns items vertically */
    justify-content: center; /* Centers them horizontally */
}

.single-post .author-info img {
    border-radius: 50%; /* Makes the image round */
    margin-right: 10px; /* Space between the image and text */
}

.single-post .author-info .author-name {
    font-weight: bold;
}

/* Center the featured image */
.single-post .post-thumbnail {
    width: 100%;
    width: 798px; /* Specific width you wanted */
    height: 450px; /* Specific height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    margin-bottom: 20px; /* Space below the featured image */
}


.content-area {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 980px;
}

/* Button styling */
.single-post .chapters-btn {
    color: #000;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
}


.button-container.fixed {
    position: fixed; /* Button and dropdown follow the scroll */
    top: 145px;
    right: 20px;
}

#chaptersButton.fixed {
    position: fixed;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    background-color: #f6f6f6;
    border: 1px solid #ccc;
    border-radius: 100px;
}

.button-container.fixed  span {
    display: none; /* Hide text when button is fixed */
}

.buttons-container.fixed #chaptersDropdown {
    right: 10px !important;
}

.single-post .chapters-btn:hover {
 border: 0;
 background: transparent;
 box-shadow: none;
}
/* Hide the dropdown by default */
.single-post .chapters-dropdown {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    width: 711px;
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px; /* 225% */
    text-decoration: none;
    padding: 30px;
    z-index: 9999;
    height: 400px !important;
    overflow: auto;
}

/* Style for list inside the dropdown */
.single-post .chapters-dropdown ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.single-post .chapters-dropdown ul li {
    margin-bottom: 5px;
}

.single-post .chapters-dropdown ul li a {
    color: #0073aa;
    text-decoration: none;
}

.single-post .chapters-dropdown ul li a:hover {
    text-decoration: underline;
}

/* Share Icons Container */
.share-icons {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 38px;
    transition: 0.3s all ease;
    max-width: 130px;
}

.share-icons-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 35px;
    padding-top: 38px;
    transition: 0.3s all ease;
    border-top: 1px solid #ccc;
    width: 100%;
}

.share-icons-footer h4 {
    padding: 0;
    margin: 0 !important;
}

.entry-content-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
    z-index: 1;
}

/* Individual Icon Styling */
.share-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
    opacity: 1;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

/* Hover Effects */
.share-icon:hover {
    opacity: 0.5;
    transition:  0.3s all ease;
    color: #000;
}

.copy-link {
    padding: 0;
    margin: 0;
    border: 0;
    box-shadow: none;
}

.copy-link:hover {
    border: 0;
    background: transparent;
    box-shadow: none;
}
/* Sticky Effect */
.fixed-icons {
    position: fixed;
    top: 150px;
}

.single-post .entry-content {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding-top: 0 !important;
}

.featured-image {
    max-width: 980px !important;
    margin: 0 auto !important;
    position: relative !important;
}

.featured-image img {
    width: 100% !important;
}

.post-categories {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: row;
    gap: 2px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.badge {
    display: flex;
    padding: 6px 8px;
    align-items: center;
    gap: 4px;
    color: #0848B0 !important;
    border-radius: 10px;
    background: #EBF3FE; 
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    font-family: 'Poppins';
}

.single-post .entry-content h2 {
    color: #000;
    font-family: Poppins;
    font-size: 18px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 36px !important;
    padding-left: 0 !important;
    border-left: 0 !important;
}

.single-post .entry-content h3 {
    color: #000  !important;
    font-family: Poppins;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 36px !important;
}

.single-post p, strong, li {
    color: #000 !important;
font-family: Poppins;
font-size: 16px !important;
font-style: normal !important;
font-weight: 400 !important;
line-height: 36px !important;
}

strong {
    font-weight: 600 !important;
}

.single-post a {
    color: #000 !important;
}

.single-post .entry-content a {
    z-index: -1;
}

.single-post a.linkedin {
    color: #0848B0 !important;
}

body.single-format-standard {
    background: transparent !important;
}

.single-post a.badge {
    color: #0848B0 !important;
}

.button-container.fixed .chapters-btn {
    background: #4a72df;
    padding: 15px;
    height: 60px;
    width: 60px;
    border-radius: 100%;
    color: #fff;
    font-size: 23px;
}

.button-container.fixed div#chaptersDropdown {
    right: 0;
}

.single-post .entry-content ul li::before {
    content: "•";
    color: #000 !important;
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    width: 20px;
}

.single-post footer a, .single-post footer p {
    color: #fff !important;
}

.single-post h4 {
    font-size: 16px;
    font-weight: normal;
}

.entry-content.socials-entry {
    margin-top: 0 !important;
}

.share-icons-footer a:hover:after {
    text-decoration: none !important;
    display: none;
}

@media(max-width: 1500px){
    .single-post .chapters-dropdown {
        width: auto;
        min-width: 450px !important;
    }
}

@media(max-width: 1280px){
    .post-meta {
        flex-direction: column;
        align-items: start;
    }
    .post-meta-inner {
        width: 100%;
    }
    #chaptersButton {
        padding-top: 15px;
    }
}

@media(max-width: 1024px){
    .entry-content-container {
        flex-direction: column;
    }
    .share-icons {
        flex-direction: row;
        align-items: center;
        justify-content: start;
        max-width: 850px;
        border-bottom: 1px solid #ccc;
        margin: 0 auto;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        padding-top: 15px;
    }
    .single-format-standard .site-main {
        padding-left: 15px;
        padding-right: 15px;
    }
    .single-post .entry-content {
        padding: 0 !important;
    }
}

@media(max-width: 1000px){
    .post-title {
        font-size: 1.5rem;
    }
    .author-name, .read-time {
        font-size: 14px;
    }
}

.copied-message {
    position: relative;
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
}

.copied-message.fade-out {
    opacity: 0;
}

.link-copied {
    opacity: 0;
    transition: 0.3s all ease;
    top: 20px;
    right: 20px;
    background: white;
    color: black;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    font-size: 14px;
    font-weight: 500;

}

.link-copied.active {
    opacity: 1;
    transition: 0.3s all ease;
}

li.header-3 {
    padding-left: 30px;
    font-weight: 500;
    font-size: 14px;
}

.entry-content-container .entry-content {
    padding: 0px !important;
}   

.single-format-standard button:focus {
    background: transparent;
    color: #000;
}