.single-post {
    width: 80%;
    height: fit-content;
  max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.single-post-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.single-post-thumbnail {
    width: 50%;
    min-width: 300px;

}

.single-post-thumbnail img{
    width: 100%;
    height: auto;
}

.single-post-title {
    width: 50%;
    min-width: 300px;
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}

.single-post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
   
    font-size: 0.95rem;
}

.single-post-navigation a {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.single-post-navigation a:hover {
    color: #005177;
}

.single-post-content p {
    margin: 0 0 40px;
}


/* version mobile */

@media (max-width: 862px) { 
.single-post-title {
 
    font-size: 30px;
   
}
}





