﻿/* BLOG-PAGE START */

.blog {
    padding-top: 24px;
}
.blog__wrapper {
    display: flex;
    flex-direction: column;
    gap:0;
}
.blog__list {
}
.blog__item {
    display: flex;
    gap:48px;
    text-decoration: none;
    color:#292826;
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: solid 2px rgba(41, 40, 38, 0.40);
    background-color: #fff;
}
.blog__item:hover {
    background-color: #FDD525;
}
.blog__item:last-of-type {
    border-bottom: none;
}
.blog__item-image {
    width: calc(36% - 24px);
    border-radius: 16px;
    overflow: hidden;
    margin-left: 10px;
}
.blog__item-image img {
    height: 100%;
    object-fit: cover;
}
.blog__item-info {
    width: calc(64% - 24px);
    max-width: 675px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:24px;
}
.blog__item-meta {
    display: flex;
    gap:16px;
    flex-direction: column;
}
.blog__item-date {
    color: rgba(41, 40, 38, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}
.blog__item-rating {
    display: flex;
    gap: 8px;
}
.blog__item-rating img{
    width: 16px;
    height: 16px;
}
.blog__item-text {
}
.blog__item-title {
    color: #292826;
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.blog__item-excerpt {
    color: #292826;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}
.blog__item-arrow {
    width: 103px;
    height: 103px;
    background: url('../../img/arrow-up-right.svg') center / cover no-repeat;
    align-self: flex-end;
    margin-left: auto;
}

.post__banner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.post__banner .main__banner-info {
    max-width: 700px;
}
.main__banner-time {
    position: relative;
    z-index: 2;
    color:#fff;
    display: flex;
    gap:12px;
    align-items: center;
}
.main__banner-time-icon {
    width: 24px;
    height: 24px;
    background: url('../../img/time_icon.svg') center / cover no-repeat;

}
.main__banner-time-text {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}

.post {
    padding-top: 32px;
}
.post__wrapper {
    display: flex;
    flex-direction: column;
    gap:32px;
}
.post__meta {
    display: flex;
    align-items: center;
    gap:32px;
}
.post__meta-date {
    color: #292826;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}
.post__meta-rating {
    display: flex;
    align-items: center;
    gap:8px;
}
.post__meta-rating img {
    width: 16px;
    height: 16px;
}
.post__content {
    max-width: 1069px;
    padding-bottom: 60px;
    font-size: 18px;
}
.post__content h2,
.post__content h3,
.post__content h4,
.post__content h5,
.post__content h6{
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 1;
}
.post__content ul,
.post__content ol{
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.post__content p{
    margin-top: 10px;
    margin-bottom: 10px;
}

/* BLOG-PAGE STOP */


