/* Crypto Template Styles - Extracted from crypto-template.php */

.featured-post-template {
    padding: 0;
}

/* Hero Section Styles */
.hero-tit {
    margin-top: 30px;
}
.hero-banner {
    background: linear-gradient(90deg, #0c0c0c 35%, #F68A1E 43%);
    width: 100%;
    height: auto;
    min-height: auto;
}
.hero-container {
    display: flex;
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0 auto;
    padding: 0;
}
.hero-container.back{
}
.hero-container.back-crypto{
    max-width: 1450px;
}
.heroin{
    display: flex;
    max-width: 1540px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px;
}
.hero-right-coingecko {
    width: 100%;
    max-width: 550px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.hero-left,
.hero-right {
    width: 50%;
    height: auto;
    min-height: auto;
    position: relative;
}

.hero-left {
    flex: 0 0 50%;
    display: flex;
    align-items: flex-start;
}

.hero-right {
    flex: 0 0 50%;
    background: #F68A1E;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
     /*grid-template-rows: minmax(400px, auto);
    min-height: 400px;
   overflow: hidden;*/
}

.hero-image {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
main#main {
    margin: 0 auto;
}

/* Mobile image optimizations */
@media (max-width: 768px) {
    .hero-image img {
        object-position: center top;
    }
}

@media (max-width: 480px) {
    .hero-image img {
        object-position: center center;
    }
}

.hero-overlay {
    grid-column: 1;
    grid-row: 1;
    width: 100%; 
    min-height: 400px;
    background: linear-gradient(90deg, rgb(12 12 12) 2%, #F68A1E4f 50%, #F68A1Ed1 70%, #F68A1E 100%);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 5;
    padding: 30px 20px;
    align-self: stretch;
}

    /* Mobile overlay improvements */
    @media (max-width: 768px) {
        .hero-overlay {
            position: relative;
            background: linear-gradient(180deg, rgba(12, 12, 12, 0.8) 0%, rgba(255, 98, 22, 0.9) 100%);
            align-items: center;
            justify-content: center;
            padding: 5px;
            /* Ensure overlay doesn't block content */
            pointer-events: none;
            /* Fix mobile positioning */
            top: auto;
            left: auto;
            width: 100%;
            height: auto;
            min-height: 100%;
        }
        
        .hero-overlay .hero-content,
        .hero-overlay .hero-content-no-image {
            pointer-events: auto;
        }
    }

@media (max-width: 480px) {
    .hero-overlay {
        position: relative;
        background: linear-gradient(180deg, rgba(12, 12, 12, 0.9) 0%, rgba(255, 98, 22, 0.95) 100%);
        padding-top: 15px;
        /* Fix mobile positioning */
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        min-height: 100%;
    }
}

.hero-content,
.hero-content-no-image {
    color: white;
    padding: 30px 20px;
    max-width: 90%;
    width: 100%;
    z-index: 10;
    position: relative;
}

.hero-content-no-image {
    background: rgba(0,0,0,0.8);
    border-radius: 10px;
    margin: 20px;
}

/* Breadcrumbs Styles */
.hero-breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Mobile breadcrumbs improvements */
@media (max-width: 768px) {
    .hero-breadcrumbs {
        text-align: center;
        word-wrap: break-word;
    }
    
    .breadcrumb-separator {
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .hero-breadcrumbs {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .breadcrumb-separator {
        margin: 0 3px;
    }
}

.hero-breadcrumbs a {
    color: #ff8630;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumbs a:hover {
    color: #f99837;
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}

.current-page {
    color: #ff8630;
    font-weight: 600;
}

.hero-title {
    font-size: 48px;
    line-height: 46px;
}

.hero-meta {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-meta span {
    margin: 0 10px;
    display: inline-block;
}

.hero-meta i {
    margin-right: 5px;
}

.hero-meta a {
    color: white;
    text-decoration: none;
}

.hero-meta a:hover {
    text-decoration: underline;
}

.hero-updated {
    color: #ff8630;
    font-weight: 500;
}

/* Mobile modified info improvements */
@media (max-width: 768px) {
    .modified-info-container {
        text-align: right;
        margin-top: 15px;
    }
    
    .modified-info {
        background: rgba(255, 255, 255, 0.1);
        padding: 8px 12px;
        border-radius: 6px;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .modified-info {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

/* Authors Section Styles */
.hero-authors {
    margin-top: 25px;
    text-align: left;
}

.authors-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #ff8630;
}

.authors-label {
    display: block;
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.authors-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.author-item {
    display: flex;
    align-items: center;
}

.author-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.author-link:hover {
    transform: translateX(5px);
    color: white;
    text-decoration: none;
}

.author-avatar {
    margin-right: 12px;
}

.author-avatar img {
    border-radius: 50%;
    border: 2px solid #ff8630;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #ff8630;
    font-size: 1rem;
}

.author-bio {
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 2px;
    line-height: 1.3;
}

/* Main Content Section */
.main-content-section {
    padding: 20px;
    max-width: 1450px;
    margin: 0 auto;
}
.pre-main, .post-main {
    min-width: 160px;
}
.featured-post-article {
    margin-bottom: 60px;
    padding: 0px;
}

/* Sticky Sidebar Layout */
.entry-content-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
}

.entry-content {
    flex: 1;
    line-height: 1.5;
    font-size: 1rem;
    margin-bottom: 40px;
    color: #c0c0c0;
}

.entry-content p {
    margin-bottom: 1.8rem;
}

.entry-content h2 {
}

.entry-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #F68A1E;
}

.tags-section {
    margin-bottom: 40px;
    text-align: center;
}

.tags-section h4 {
    margin-bottom: 15px;
    color: #a8a8a8;
    font-size: 1.3rem;
}

.tags-links a {
    display: inline-block;
    background: #F68A1E;
    color: white;
    padding: 8px 15px;
    margin: 3px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.tags-links a:hover {
    background: #3c5388;
    color: white;
}
.tags-links {
    margin: 0 15px;
}
.social-sharing {
    margin-bottom: 40px;
    text-align: center;
}

.social-sharing h4 {
    margin-bottom: 20px;
    color: #a8a8a8;
    font-size: 1.3rem;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: transform 0.3s ease;
    margin: 10px 0 0;
}

.social-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.social-btn i {
    margin-right: 8px;
}
.crypto-social-sharing-single-post {
    margin-top: 10px;
}

.social-btn.facebook {
    color: #F68A1E;
    border: 1px solid;
}

.social-btn.x-twitter {
    color: #F68A1E;
    border: 1px solid;
    fill: #F68A1E;
}

.social-btn.linkedin {
    color: #F68A1E;
    border: 1px solid;
}
i.fa.fa-share, i.fa.fa-share-alt {
    font-size: 21px;
    color: #F68A1E;
}
.social-sharing-btn {
    margin: 0;
}
.post-navigation h4 {
    margin-bottom: 20px;
    color: #a8a8a8;
    font-size: 2rem;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.related-post-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-post-item:hover {
    transform: translateY(-5px);
    border-color: #F68A1E;
    box-shadow: 0 10px 25px rgba(255, 98, 22, 0.15);
}

.related-post-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-item:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 20px;
}
.related-post-title {
}
.related-post-item:hover .related-post-title {
    color: #F68A1E;
}

.related-post-excerpt {
    color: #4A5565;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 10px;
}

.related-post-date {
    color: #F68A1E;
    font-size: 14px;
    font-weight: 500;
}
.disclaimer-post {
    margin: 50px 0;
    color: #888;
    text-align: center;
}
.flex-it.sidebar-toggle-container.mob-crypto {
    display: none;
}

@media (max-width: 768px) {
    .hero-tit {
        height: auto;
        min-height: auto;
    }
    
    .hero-banner {
        background: none;
    }
    
    .hero-container {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .hero-left,
    .hero-right {
        width: 100%;
        height: 50vh;
        min-height: 300px;
        background: none;
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        /* Debug: ensure content is visible */
        overflow: visible;
        position: relative;
    }
    
    .hero-left {
        order: 1;
        /* Ensure hero-left content is visible on mobile */
        min-height: 300px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        /* Fix mobile layout */
        position: relative;
        overflow: visible;
    }
    
    .hero-right {
        order: 2;
    }
    
    .hero-right-coingecko {
        max-width: 100%;
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        min-height: auto;
    }
    
    .hero-content,
    .hero-content-no-image {
        padding: 15px;
        max-width: 100%;
    }
    
    /* Mobile-specific hero improvements */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content,
    .hero-content-no-image {
    }
    
    .hero-breadcrumbs {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .breadcrumbs-bro {
        font-size: 11px;
        margin: 8px 0;
        text-align: left;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-meta {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-updated {
        font-size: 0.8rem;
    }
    
    .authors-info {
        padding: 12px;
        margin-top: 15px;
    }
    
    .authors-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .author-item {
        font-size: 0.9rem;
    }
    
    /* CoinGecko widget mobile optimization */
    .hero-right-coingecko {
        padding: 0px;
        margin: 10px auto;
    }
    
    .hero-right-coingecko gecko-coin-ticker-widget {
        transform: scale(0.9);
        transform-origin: center;
    }
    
    /* Mobile credits improvements */
    .credits {
        padding: 5px;
        margin:  0;
        text-align: center;
    }
    
    .author-info, .supervisor-info {
        padding: 10px;
    }
    
    .author-info img, .supervisor-info img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .related-post-content {
        padding: 15px;
    }
    
    .related-post-title {
        font-size: 1rem;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-btn {
        width: 200px;
        justify-content: center;
    }
    
    /* Mobile Sidebar Styles */
    .entry-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .crypto-sidebar {
        width: 100%;
        position: static;
        order: -1; /* Move sidebar to top on mobile */
    }
    
    .crypto-sidebar-header {
        padding: 15px;
    }
    
    .crypto-sidebar-image {
        max-height: 60px;
    }
    
    .crypto-sidebar-image img {
        height: 50px;
    }
    
    .crypto-sidebar-widget {
        padding: 10px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-label {
        margin-right: 0;
        margin-bottom: 2px;
    }
    
    .info-value {
        text-align: left;
    }
    
    .social-buttons-sidebar {
        gap: 15px;
    }
    
    .social-btn-sidebar {
        width: 45px;
        height: 45px;
    }
    .heroin{
        padding: 5px;
    }
}

/* Credits Section Styles - Matching broker template */
.author-info a:hover,
.supervisor-info a:hover {
    color: #F68A1E;
    text-decoration: underline;
}
.job-title {
    display: block;
    margin-top: 5px;
    font-size: 0.8rem;
    font-weight: normal;
}
.modified-info {
    margin-top: 10px;
}
.modified-info span {
    color: #3C5388;
    font-size: 0.8rem;
}
.modified-info-container {
    margin: 0;
    display: block;
}
/* Crypto Sidebar Styles */
.crypto-sidebar {
    width: 270px;
    border-radius: 10px;
    position: sticky;
    top: 20px;
    height: fit-content;
    align-self: flex-start;
    flex-shrink: 0;
}

.crypto-sidebar-header {
    padding: 20px;
    border-bottom: 1px solid hsl(0deg 0% 60% / 16.08%);
}

.crypto-sidebar-image {
    max-height: 80px;
    margin-bottom: 15px;
    text-align: center;    
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
}

.crypto-sidebar-image img {
    max-width: 100%;
    height: 60px;
    border-radius: 4px;
    object-fit: contain;
}

.crypto-sidebar-widget {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.crypto-quick-info {
    margin-bottom: 20px;
}

.crypto-quick-info h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    color: #ccc;
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 10px;
}

.info-value {
    color: #fff;
    font-size: 12px;
    text-align: right;
    flex: 1;
}

.info-value a {
    color: #ff8630;
    text-decoration: none;
}

.info-value a:hover {
    color: #F68A1E;
    text-decoration: underline;
}

.crypto-social-sharing {
    margin-bottom: 20px;
}

.crypto-social-sharing h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.social-buttons-sidebar {
}

.social-btn-sidebar, .ai-btn-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    font-size: 21px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-bottom: 15px;
}

.social-btn-sidebar:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.social-btn-sidebar.facebook {
    color: #F68A1E;
}

.social-btn-sidebar.x-twitter {
    color: #F68A1E;
}

.social-btn-sidebar.linkedin {
    color: #F68A1E ;
}
svg.e-font-icon-svg.e-fab-x-twitter {
    fill: #F68A1E;
}
.crypto-toc {
    background: #FAE58F;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 2px 2px 0 0 rgba(120, 79, 37, 0.27);
}

.crypto-toc h4 {
    color: #3c5388;
    font-size: 24px;
    text-align: center;
}

.toc-content {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #3c5388 #fff;
}

.toc-content::-webkit-scrollbar {
    width: 6px;
    height: 0;
}

.toc-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.toc-content::-webkit-scrollbar-thumb {
    background: #F68A1E;
    border-radius: 3px;
}

.toc-content::-webkit-scrollbar-thumb:hover {
    background: #F68A1E;
}

.toc-content::-webkit-scrollbar-corner {
    background: transparent;
}

.crypto-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.crypto-toc li {
}
.crypto-toc ul li {
    list-style: none;
    margin-left: 10px;
}

.crypto-toc a {
    color: #3C5388;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-size: 14px;
    padding: 10px 10px 10px 30px;
}

.crypto-toc a:hover {
    color: #3c5388;
   
}

.crypto-toc a.active {
    color: #3c5388;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
}

.crypto-toc a.hover {
    background: rgba(255, 255, 255, 0.05);
}

.crypto-toc a.active::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #3c5388;
    font-size: 14px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 10px solid #3c5388;
    border-bottom: 5px solid transparent;
    opacity: 1;
}

.crypto-toc a.active {
    position: relative;
    color: #3c5388;
    background: rgba(255, 255, 255, 0.1);
    font-weight: bold;
    padding-left: 35px;
}

.crypto-toc a.hover::before {
	opacity:1;
}
.crypto-toc a::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #3c5388;
    font-size: 14px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 10px solid #3c5388;
    border-bottom: 5px solid transparent;
    opacity: 0;
 }
 .crypto-toc a.hover {
    position: relative;
    color: #3c5388;
    background: rgba(255, 255, 255, 0.05);
}
/* Banner Switching Styles */
.crypto-sidebar-banner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 0px 9px;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    transform: translateY(20px);
    box-sizing: border-box;
}

.banner-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.banner-content h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

.banner-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
}

/* Remove the z-index classes that were causing conflicts */
.banner-content.banner-default {
    z-index: 1;
}

.banner-content.banner-second {
    z-index: 2;
}

.banner-content.banner-third {
    z-index: 3;
}

button.ai-sharing-btn svg {
    /*height: 25px;
    margin: 0 0 -3px -3px;*/
}


/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .crypto-toc a {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .crypto-toc a:hover {
        transform: translateX(3px);
    }
    
    .crypto-toc a.active {
        background: rgba(255, 134, 48, 0.2);
    }
    .crypto-ai-sharing-btn.crypto-ai-sharing-spotlight .crypto-ai-sharing-left-text {
        display: inline-block;
        white-space: normal;
        max-width: 200px;
        text-align: left;
    }
}

/* Ensure tooltips are not clipped */
html, body {
    overflow-x: visible;
}

/* Container stacking context */
.crypto-social-ai-container {
    position: sticky;
    top: 0px;
    z-index: 9999;
    background: #131313;
}
/* Custom Dropdown Styles for Social Sharing */
.crypto-social-sharing-single-post .dropdown-sharing {
    position: relative;
    display: inline-block;
    z-index: 9998;
}

.crypto-social-sharing-single-post .dropdown-menu {
    display: none;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: #131313;
}

.crypto-social-sharing-single-post .dropdown-menu.show {
    display: block;
}

.crypto-social-sharing-single-post .dropdown-item {
    display: block;
    width: 100%;
    padding: 0;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    border: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

.crypto-social-sharing-single-post .dropdown-item:hover {
    color:rgb(245, 61, 11);
    text-decoration: none;
}

.crypto-social-sharing-single-post .dropdown-item.social-btn-sidebar,
.crypto-social-sharing-single-post .dropdown-item.ai-btn-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    margin: 0px;
    border-radius: 50%;
    width: auto;
    height: 45px;
    min-width: auto;
    margin: -5px;
}

.crypto-social-sharing-single-post .dropdown-item.social-btn-sidebar i,
.crypto-social-sharing-single-post .dropdown-item.social-btn-sidebar svg,
.crypto-social-sharing-single-post .dropdown-item.ai-btn-sidebar i,
.crypto-social-sharing-single-post .dropdown-item.ai-btn-sidebar svg {
    font-size: 16px;
    width: 20px;
    height: 20px;
}
button#dropdownMenuButton, button#dropdownMenuButton:focus, button#dropdownMenuButton:hover, button#dropdownMenuButton:active {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0;
}
/* Comments Section Styles */
.crypto-comments-section {
    padding-top: 40px;
}

.comments-title {
    color: #ff8630;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

/* WordPress Default Comments Styling */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment-list .children {
    list-style: none;
    padding-left: 40px;
    margin: 20px 0;
}

.comment {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.comment:hover {
    border-color: #F68A1E;
    box-shadow: 0 5px 15px rgba(255, 98, 22, 0.1);
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author .avatar {
    border-radius: 50%;
    border: 2px solid #ff8630;
    margin-right: 15px;
    width: 50px;
    height: 50px;
}

.comment-author .fn {
    color: #ff8630;
    font-weight: 600;
    font-style: normal;
    text-decoration: none;
}

.comment-author .fn:hover {
    color: #F68A1E;
    text-decoration: underline;
}

.comment-meta {
    color: #999;
    font-size: 0.9rem;
    margin-left: 10px;
}

.comment-meta a {
    color: #999;
    text-decoration: none;
}

.comment-meta a:hover {
    color: #ff8630;
}

.comment-content {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.comment-content p {
    margin-bottom: 10px;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-reply-link {
    display: inline-block;
    background: #F68A1E;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: #ff8630;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Comment Form Styling */
.comment-respond {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.comment-reply-title {
    color: #ff8630;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.comment-form {
    display: grid;
    gap: 20px;
}

.comment-form-comment {
    grid-column: 1 / -1;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: flex;
    flex-direction: column;
}

.comment-form label {
    color: #ccc;
    margin-bottom: 8px;
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    border-radius: 8px;
    padding: 12px 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #F68A1E;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 98, 22, 0.2);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form input[type="submit"] {
    background: linear-gradient(85.01deg, #ff7e00 6.26%, #e70000 82.45%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: start;
}

.comment-form input[type="submit"]:hover {
    background: linear-gradient(85.01deg, #ff8630 6.26%, #F68A1E 82.45%);
    transform: translateY(-2px);
    border: none;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    grid-column: 1 / -1;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #F68A1E;
}

.comment-form-cookies-consent label {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

/* No Comments Message */
.no-comments {
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 30px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 10px;
    border: 1px dashed #444;
}

@media (max-width: 1060px) {
    .crypto-social-ai-container {
        display: flex; 
   }
   .crypto-sidebar {
    width: 100%;
    }
    .share-social-ai-block-mobile {
        display: flex;
        margin-bottom: 10px;
    }
    .crypto-sidebar.desk {
        display: none;
    } 
    .flex-it.sidebar-toggle-container.mob-crypto {
        display: block;
    }
    .entry-content-wrapper{
        display: block;
        padding: 10px;
    }
    .crypto-social-sharing-single-post .dropdown-menu {
        position: relative;
    }
    .crypto-social-sharing-single-post .dropdown-menu.show {
        display: inline-flex;
    }
    .featured-post-article {
    }
    .crypto-social-sharing-single-post {
        position: relative;
        top: 0;
        margin-top: 0;
    }
    .crypto-social-sharing-single-post .dropdown-men{
        padding: 0;
        margin: 0;
    }
    .crypto-social-sharing-single-post .dropdown-item.social-btn-sidebar,
    .crypto-social-sharing-single-post .dropdown-item.ai-btn-sidebar {
        padding: 0px;
        margin: 0 5px;
        width: auto;
        height: auto;
    }
    .crypto-social-sharing-single-post .dropdown-menu{
        padding: 0;
    }
    button#dropdownMenuButton, button#dropdownMenuButton:focus, button#dropdownMenuButton:hover, button#dropdownMenuButton:active{
        padding: 10px;
    }
}
/* Responsive Design for Comments */
@media (max-width: 768px) {
    .comment-list .children {
        padding-left: 20px;
    }
    
    .comment {
        padding: 15px;
    }
    
    .comment-author .avatar {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .comment-respond {
        padding: 20px;
    }
    
    .comment-form {
        gap: 15px;
    }
    
    .comment-form input[type="submit"] {
        width: 100%;
        justify-self: stretch;
    }
    
    .comment-form-cookies-consent {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Additional mobile optimizations for phones */
@media (max-width: 480px) {
    .hero-tit {
        height: auto;
        min-height: auto;
    }
    .hero-image-container {
        border-radius: 10px;
    }
    
    .hero-banner {
        background: none;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-left,
    .hero-right {
        height: auto;
        min-height: 250px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1;
        margin-bottom: 12px;
        min-height: auto;
    }
    
    .hero-content,
    .hero-content-no-image {
        padding: 0;
        max-width: 100%;
    }
    
    .hero-breadcrumbs {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .hero-meta {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .hero-updated {
        font-size: 0.75rem;
    }
    
    .authors-info {
        padding: 10px;
        margin-top: 12px;
    }
    
    .authors-label {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }
    
    .author-item {
        font-size: 0.8rem;
    }
    
    .hero-right-coingecko {
        padding: 0px;
        margin: 8px auto;
    }
    
    .hero-right-coingecko gecko-coin-ticker-widget {
        transform: scale(0.8);
        transform-origin: center;
    }    
    .author-info span, .supervisor-info span {
        font-size: 10px;
    }
    .credits {
        display: block;
        flex-direction: row;
        gap: 5px;
        margin-bottom: 0;
        padding: 0px;
    }
    .main-content-section{
        padding: 0;
    }
}

@media (max-width: 375px) {
    .hero-overlay {
        position: relative;
        /* Fix mobile positioning */
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        min-height: 100%;
    }
    
    .hero-title {
        font-size: 1.3rem;
        line-height: 1;
    }
    
    .hero-content,
    .hero-content-no-image {
        padding: 12px 8px;
    }
    
    .hero-breadcrumbs {
        font-size: 0.7rem;
    }
    
    .hero-meta {
        font-size: 0.75rem;
    }
    
    .hero-updated {
        font-size: 0.7rem;
    }
    
    .authors-info {
        padding: 8px;
    }
    
    .authors-label {
        font-size: 0.7rem;
    }
    
    .author-item {
        font-size: 0.75rem;
    }
    
    .hero-right-coingecko {
        padding: 0px;
        margin: 6px auto;
    }
    
    .hero-right-coingecko gecko-coin-ticker-widget {
        transform: scale(0.75);
        transform-origin: center;
    }
}

/* Hide WP Review rating elements in crypto template comments */
.crypto-comments-section .wp-review-comment-rating,
.crypto-comments-section .wp-review-comment-rating-wrap,
.crypto-comments-section .wp-review-comment-rating-stars,
.crypto-comments-section .wp-review-comment-rating-label,
.crypto-comments-section .wp-review-comment-rating-input,
.crypto-comments-section .wp-review-comment-rating-required {
    display: none !important;
}

.crypto-comments-section .comment-form-comment {
    margin-top: 0 !important;
}
