/*/ ARTICLES PAGE */

section.article-whole  {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

section.article-whole  article {
    width: 75%;
}

.article-whole .post-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
	background-size: contain;
    background-repeat: no-repeat;
	margin-bottom: 10px;
}

.article-whole .post-thumbnail:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: no-repeat center center;
	background-image: inherit;
    background-size: cover;
    filter: blur(5px);
    z-index: 1;
}

.article-whole .post-thumbnail img {
    position: relative;
    z-index: 7;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 500px;
    margin: auto;
    display: flex;
}


.article-whole  .entry-title {
        border-bottom: 2px solid;
        padding-bottom: 0.5em;
        font-size: 36px;
    }

 .article-whole   .entry-meta {
        display: flex;
        align-items: center;
        margin-bottom: 1em;
    }


.article-whole .entry-tags a {
   color: var(--yellow);
}

.article-whole .entry-meta .author {
        margin-right: 1em;
    }


.article-whole .entry-tags {
        margin-bottom: 1em;
    }

.article-whole .entry-content {
    max-width: 100%;
    color: var(--white);
    font-size: 1.3rem;
}

.article-whole  .entry-content  a {
		color: var(--yellow);
}



/* ARTICLES PAGE END */