.social-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
}

.social-wrapper.white > .social-link {
    color: white;
}

.social-wrapper.black > .social-link {
    color: black;
}

.social-link {
    text-decoration: none;
    font-size: 20pt;
    transition: color .4s ease;
}

.social-link:hover {
    color: #FFC300 !important;
}

.navigate-wrapper {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
}

.navigate-item {
    padding: 15px 30px;
    cursor: pointer;
}

.navigate-item > .menu {
    cursor: auto;
}

.navigate-item > a {
    text-decoration: none;
    font-size: 20px;
    color: rgb(55, 55, 55);
    transition: color .2s ease;
}

.navigate-item.active {
    background-color: #FFC300;
}

.navigate-item.active > a {
    font-weight: bold;
    color: black;
}

.navigate-item:hover > a {
    color: #FFC300;
}

.navigate-item.active:hover > a {
    color: black;
}

.text-yellow {
    color: #FFC300 !important;
}

.c-card {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: start;
    color: white;
    text-shadow: 0 0 1px black;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
    text-decoration: none;
}

@media screen and (min-width: 576px) {
    .c-card {
        height: 180px;
    }
}

@media screen and (max-width: 576px) {
    .c-card {
        height: 167px;
    }
}

.c-card:hover>.c-img {
    transform: scale(1.1);
    filter: brightness(100%);
}

.c-card h3 {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.c-img {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 180px;
    z-index: -1;
    filter: brightness(70%);
    transition: transform 1s, filter .7s ease;
    object-fit: cover;
}

.p-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.truncate-two {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

@media screen and (min-width: 576px) {
    .p-card.mini {
        height: 215px;
        margin-bottom: 19px;
    }
}

@media screen and (max-width: 576px) {
    .p-card.mini {
        height: 160px;
        margin-bottom: 19px;
    }
}

.p-card:hover>.p-img {
    transform: scale(1.1);
    filter: brightness(50%);
}

.p-card>* {
    z-index: 1;
}

.p-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(30%);
    transition: transform 1s, filter .7s ease;
    z-index: 0;
}

.btn-yellow {
    background-color: #FFC300;
    color: white;
    border-radius: 25px;
    border: none;
    padding: 10px 40px;
    cursor: pointer;
    font-weight: bold;
    font-size: large;
    transition: background-color .2s ease;
    text-decoration: none;
}

.btn-yellow:hover {
    background-color: #DBA800;
}

.btn-yellow:active {
    background-color: #CA9B00;
}

@keyframes fade-top {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-top {
    animation: fade-top .5s ease;
}

.post-content {
    position: relative;
    height: auto;
    min-height: 100% !important;
}

.post-content img {
    height: auto;
    max-width: 100%;
}

.cookie_notice {
    display: none;
    position: fixed;
    z-index: 9999999;
    bottom: 10px;
    text-align: center;
    background: white;
    border-radius: 15px;
    padding: 10px 20px;
    max-width: 800px;
    left: 50%;
    transform: translateX(-50%);
}
