@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&family=Patua+One&display=swap');

*{
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Golos Text';
    font-weight: 400;
}


body {
    display: grid;
    grid-template-columns: 0.25fr 1fr 0.25fr;
    /*grid-template-rows: repeat(4, 1fr);*/
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: #D3EFE9;
}

.post_body {
    display: grid;
    grid-template-columns: 0.25fr 1fr 0.25fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: #D3EFE9;
}

header {
    grid-area: 1 / 1 / 2 / 4;
    background-image: url("img/header_eyes.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 160px;
}

aside {
    grid-area: 2 / 1 / 4 / 2;
    width: fit-content;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.25);
    border-top: 3px solid white;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    border-radius: 0px 20px 20px 0px;
}

ul {
    list-style: none;
    padding: 16px;
    text-align: center;
}

li {
    font-family: 'Golos Text';
    text-align: left;
    padding: 8px;
    
}

#icon_owl {
    width: 40px;
    display: block;
    margin: 0 auto;
}

#icon_star {
    width: 30px;
    display: block;
    margin: 0 auto;
}

.menu_link {
    font-weight: 600;
    font-size: 20px; 
    text-decoration: none; 
    color: black;  
}

.menu_link:visited {
    color: blacK;
}

.menu_link_selected {
    font-size: 24px;
    font-weight: 700;
    background-color: #FB7A3B;
    color:white;
    text-decoration: none; 
    padding: 4px 8px 4px 8px;
}

.menu_link:hover {
    color: #D96025;
}

h2 {
    display:none;
}

main {
    grid-area: 2 / 2 / 4 / 3;
}

/* POSTS HOME */
.post_home {
    background-color: white;
    box-shadow: 0px 0px 30px -10px #82C8B9 inset;
    border-radius: 20px;
    padding: 24px;
    margin: 0 0 20px 0;
}

h3 {
    font-family: 'Patua One';
    font-size: 32px;
}

.post_home_header {
    display:flex;
    max-width: max-content;
    justify-content: space-between;
}

.post_home_data {
    width:fit-content;
}

.post_home_data>p{
    display: inline;
    margin : 0 0 0 8px;
}

.tag {
    font-size: 16;
    font-weight: 600;
    color:white;
    background-color: #D247BB;
    padding: 0 4px 0 4px;
}

.date {
    font-size: 16px;
    color: rgba(0,0,0,0.5);
}

.post_home_content {
    padding: 12px 0 0 0;
}

/* POSTS IMAGE */
.post_home_image {
    background-color: white;
    box-shadow: 0px 0px 30px -10px #82C8B9 inset;
    border-radius: 20px;
    margin: 0 0 20px 0;
    display: flex;
}

.image_home_post_text {
    padding: 24px 24px 24px 16px;
    display:block;
    width: 100%;
}

.image_home_post {
    width: 140px;
    height: 200px;
    object-fit: cover;
    margin: 0 16px 0 0;
    border-radius: 20px 0 0 20px;
}

.image_home_post_header {
    display:flex;
    width:100%;
    justify-content: space-between;
}

/* POSTS BIG */

.post_big {
    background-color: white;
    box-shadow: 0px 0px 30px -10px #82C8B9 inset;
    border-radius: 20px;
    padding: 24px;
    margin: 0 0 20px 0;
}

.breadcrumbs_link {
    text-decoration: none;
    color: rgba(0,0,0,0.5);
}

.breadcrumbs_link:hover {
    color: #D96025;
}

.breadcrumbs_title {
    display: inline;
    color: rgba(0,0,0,0.5);
}

.post_big_header {
    display:flex;
    justify-content: space-between;
    margin: 0 0 8px 0;
}

/*grid-area: 2 / 3 / 4 / 4; */

footer {
    grid-area: 4 / 1 / 5 / 4;
    text-align: center;
    font-size: 12px;
    color: rgba(0,0,0,0.5);
}

.post_home_content>p {
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.post_link {
    text-decoration: none; 
    color: black;
}

.post_link:hover {
    color: #473E3A;
}

