/* Stile del contenuto del post */
.futur-post-content {
    padding: 16px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
}

.futur-entry-header {
    position: relative;
    padding: 4px;
    margin: 0px 0px 20px 0px;
    color: #fff;
    text-align: left;
    background: linear-gradient(45deg, #1c73df, #3e26ff, #4a90e2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden; 
    transform: translateZ(10px); /* Aggiungere profondità 3D */
}
.futur-call-to-action {
    position: relative;
    padding: 2px;
    margin: 10px 0px;
    color: #fff;
    text-align: center;
    background: linear-gradient(45deg, #1c73df, #3e26ff, #4a90e2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Impedisce ai cubi di uscire dal contenitore */
    z-index: 1;
}

.futur-call-to-action .btn-primary {
    background-color: white;
    color: #000000;
    padding: 6px 20px;
    border-radius: 30px;
    margin: 6px;
    font-weight: bold;
    text-align: center;
    display: inline-block;
}
.call-to-action-title {
    font-size: 2rem;
    color: #fff;
    line-height: 1.4;
    margin: 8px;
}
.call-to-action-p {
    margin: 8px;

}
.futur-entry-content a {
    color: #3e55ff;
    font-weight: bold;
}

.futur-entry-title {
    font-size: 2rem;
    line-height: 1.4;
    margin: 8px;
}

.futur-post-meta {
    font-size: 12px;
    color: #ffffff;
    font-weight: 300;
    padding: 2%;
}

.futur-meta-separator {
    font-size: 18px;
    color: #ffffff;
    margin: 4px;
}

.futur-post-meta .futur-post-date-label, .futur-post-reading-time {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .6px;
    font-weight: 600; 
}

.futur-post-author {
    display: none;
}

.futur-post-categories a {
    padding: 2px 12px;
    margin-right: 4px;
    color: #4a4a4a;
    font-weight: bold;
    border-radius: 18px;
    box-shadow: 0 1px 4px #3e55ff;
}

.futur-post-tags a {
    padding: 0px 14px;
    font-size: 14px;
    color: #000;
    border-radius: 18px;
    box-shadow: 0px 0px 4px #3e55ff;
    font-weight: bold;
}

.futur-tag-label {
    font-weight: bold;
    line-height: normal;
}

.futur-post-tags {
    margin-top: 14px;
    gap: 8px;
    display: flex; 
    flex-wrap: wrap; 
    align-items: flex-end; 
}



/* Navigazione tra i post */
.futur-post-navigation {
    display: flex;
    justify-content: center; 
    align-items: center; 
    gap: 40px; 
    padding: 20px 0; 
}
.futur-nav-previous,
.futur-nav-next {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2px 8px;
    border-radius: 30px;
    background: linear-gradient(45deg, #1c73df, #3e26ff, #4a90e2);
}
.futur-nav-previous a,
.futur-nav-next a {
    display: block;
    font-size: 16px;
    padding: 0px;
    margin: 0;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
}



/* Contenitore immagine a tutto schermo */
.futur-full-screen-image {
    position: relative;
    width: 100%; 
    height: 60vh; 
    overflow: hidden; 
    display: none;
}
/* Assicura che l'immagine in evidenza copra completamente il contenitore senza distorcerla */
.futur-full-screen-image img {
    position: absolute;
    top: 50%; 
    left: 50%; 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    transform: translate(-50%, -50%); 
    z-index: -1;
}
/* Stile per dispositivi molto grandi*/
@media (min-width: 1200px) {
    .futur-full-screen-image {
        height: 60vh; 
    }
}
/* Stile per dispositivi più piccoli */
@media (max-width: 768px) {
    .futur-full-screen-image {
        height: 50vh; 
    }
}
/* Stile per dispositivi smartphone */
@media (max-width: 480px) {
    .futur-full-screen-image {
        height: 30vh; 
    }
}




/* Articoli correlati */
.futur-related-posts {
    text-align: center;
    margin: 0px 2px 10px 2px;
    padding: 2px;
}
.futur-related-posts-title {
    font-size: clamp(1.6rem, 3vh, 1.8rem);
    background: linear-gradient(45deg, #1c73df, #3e26ff, #4a90e2);
    border-radius: 35px 10em 10%;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    padding: 10px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.futur-related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px; 
    max-width: 1000px;
    margin: 0 auto; 
    padding: 0 10px; 
}
.futur-related-post-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 6px 5px 10px 1px rgb(0 0 0 / 14%);
    transition: transform 0.3s ease;
}
.futur-related-post-item:hover {
    transform: translateY(-5px); 
    background: linear-gradient(45deg, #1c73df, #3e26ff, #4a90e2);
    color: #fff; 
}
.futur-related-post-item:hover .futur-related-post-title {
    color: #fff; 
}
.futur-related-post-thumbnail img {
    width: 100%;
    height: 150px; 
    object-fit: cover; 
    border-radius: 8px 8px 0px 0px;
}
.futur-related-post-title {
    font-size: 1rem;
    margin-top: 0px;
    color: #000000;
}
.futur-related-post-title a {
    color: inherit;
    text-decoration: none;
}
.futur-related-post-title a:hover {
    text-decoration: underline;
}
/* Stile dispositivi mobile */
@media (max-width: 768px) {
    .futur-related-posts-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
    .futur-related-posts-title {
        max-width: 93%;
    }
}
@media (max-width: 480px) {
    .futur-related-posts-grid {
        grid-template-columns: 1fr;  
    }
}
