.news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    text-transform: uppercase;
}



/* ====== GRID BETÖLTÉS ÁLLAPOT ====== */
#news-grid[aria-busy="true"] {
    opacity: .6;
    pointer-events: none;
    transition: opacity .2s ease
}

/* ====== KÁRTYA BELIBBENÉS ====== */
.card-fade {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
    display: flex;
    flex-direction: column;
}

.card-fade.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important
    }
}

#sticky-feature .col-1-3 {
    display: flex;
    flex-direction: column;
}

#sticky-feature .hirek-btn,
.card-fade .hirek-btn {
    margin-top: auto;
}

.hirek-btn{
    padding-top: 10px;
}

#sticky-feature .hirek-btn{
    padding-top: 2rem;
}

.hirek-btn .infogomb span{
    color: var(--accent_nyil)!important;
}

.hirek-btn .infogomb {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.hirek-btn .infogomb,
.hirek-btn .infogomb:hover,
.infogomb .wp-block-button__link {
    color: var(--accent_nyil);
}

.hirek-btn .infogomb::before {
    background: var(--accent_nyil);
}

#sticky-feature .meta-date {
    margin-bottom: 3rem;
    text-transform: uppercase;
}

#sticky-feature .col-2-3 {
    padding-left: 4rem;
}

.width-30 {
    width: 30%;
    margin-top: 1rem;
}

.news-cols h2 {
    margin-bottom: 0;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 0;
}

.navigation.pagination {
    margin-top: 9rem;
}

#sticky-feature h3 {
    line-height:45px;
}

/* == Single == */

.single-post main img {
    width: 100%;
}

.single-meta {
    display: flex;
    gap: 3rem;
    margin: 3rem 0 1.5rem 0;
}

.single-content {
    width: 60%;
    margin: 0 auto;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 0.5px solid var(--black-30);
    border-bottom: 0.5px solid var(--black-30);
    padding: 1.5rem 0;
}

.post-navigation a {
    font-weight: 600;
    color: var(--accent_nyil);
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.post-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent_nyil);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.post-navigation a:hover:before {
    opacity: 1;
}

.hirek-single p{
    margin: 5px 0 10px 0;
    line-height: 32px;
}

.hirek-single img{
margin: 1rem 0;
}