.post-thumbnail {
    position: relative;
}

.post-thumbnail img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    position: relative;
    z-index: 1
}
.post-thumbnail:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    background: -moz-linear-gradient(180deg, rgba(225,225,225,0.5) 0%, rgba(225,225,225,0.2) 39%, rgba(225,225,225,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(225,225,225,0.5) 0%, rgba(225,225,225,0.2) 39%, rgba(225,225,225,0) 100%);
    background: linear-gradient(180deg, rgba(225,225,225,0.5) 0%, rgba(225,225,225,0.2) 39%, rgba(225,225,225,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.post__main-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
    justify-content: space-between;
}
.post__breadcrumbs-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-urbanist);
    font-weight: 700;
    margin-bottom: 32px;
}
.post__breadcrumbs-container a {
    color: #101828;
}
.post__aside {
    flex-grow: 0;
    flex-shrink: 0;
    margin-right: 80px;
    padding-top: 50px;
    padding-bottom: 60px;
}
@media (max-width: 767px) {
    .post__aside {
        order: 999;
        width: 100%;
        margin-right: 0;
        padding-bottom: 0;
    }
}
.post__share-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 767px) {
    .post__share-list {
        flex-direction: row;
        justify-content: center;
    }
}
.post__share-item a {
    background: #D9D9D9;
    width: 60px;
    height: 60px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #000000;
    transition: all ease-out 0.3s;
}
@media (max-width: 767px) {
    .post__share-item a {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}
.post__share-item a:hover {
    background: #999999;
    color: #ffffff;
}
.post__title {
    font-size: clamp(48px, calc(3rem + ((1vw - 7.68px) * 6.015)), 80px);
    font-size: 60px;
    line-height: 1.3;
    font-family: var(--font-urbanist);
    margin-top: 0;
    margin-bottom: 40px;
}
.post__content {
    font-family: 'Helvetica', sans-serif;
    width: calc( 100% - 150px );
    font-size: 16px !important;
    line-height: 25px;
}
@media (max-width: 767px) {
    .post__content {
        width: 100%;
    }
}
.tradition {}
.tradition__wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}
.tradition__main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
@media (min-width: 768px) {
    .tradition__main {
        grid-template-columns: 1fr 1fr;
    }
}
.youtube-embed {
    width: 100%;
    height: 100%;
}
.tradition__main-text-container {
    background: #101828;
    color: #ffffff;
    padding: 40px;
}
.tradition__main-title {
    font-family: var(--font-raleway);
    font-size: clamp(24px, calc(1.5rem + ((1vw - 7.68px) * 2.8195)), 39px);
    margin-top: 0;
    margin-bottom: 16px;
}
.tradition__main-text-container p {
    margin-top: 0;
}
.tradition__youtube-link {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tradition__youtube-avatar-container {
    flex-grow: 0;
    flex-shrink: 0;
}
.tradition__youtube-avatar-container img {
    width: 56px;
    height: 56px;
    border-radius: 99px;
}
.tradition__youtube-name {
    color: #ffffff;
}
.tradition__youtube-name h5 {
    font-family: var(--font-urbanist);
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 4px;
}
.tradition__youtube-name h6 {
    font-family: var(--font-urbanist);
    font-size: 12px;
    margin: 0;
}