/* Hypnos2 - modern hírmodul */
.hypnos-news-page {
    color: #d9c6aa;
}

.hypnos-news-page * {
    box-sizing: border-box;
}

.hypnos-news-hero {
    position: relative;
    min-height: 340px;
    margin: -20px -20px 22px;
    overflow: hidden;
    border: 1px solid rgba(201, 170, 113, 0.38);
    background-position: center;
    background-size: cover;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.hypnos-news-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 8, 8, 0.97) 0%, rgba(24, 13, 11, 0.8) 48%, rgba(24, 13, 11, 0.16) 100%);
}

.hypnos-news-hero__content {
    position: relative;
    z-index: 1;
    width: 67%;
    padding: 58px 52px 48px;
}

.hypnos-news-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d9b96f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hypnos-news-hero h1,
.hypnos-news-feed h2,
.hypnos-article h1 {
    font-family: Georgia, 'Times New Roman', serif;
    color: #f7e8c7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.hypnos-news-hero h1 {
    margin: 13px 0 15px;
    font-size: 40px;
    line-height: 1.08;
}

.hypnos-news-hero p {
    max-width: 600px;
    margin: 0;
    color: #d8c9b4;
    font-size: 14px;
    line-height: 1.75;
}

.hypnos-news-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hypnos-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 18px;
    border: 1px solid rgba(201, 170, 113, 0.5);
    border-radius: 2px;
    color: #f7e8c7 !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.hypnos-btn:hover {
    transform: translateY(-2px);
    border-color: #dfbb72;
}

.hypnos-btn--primary {
    background: linear-gradient(180deg, #a84c3a 0%, #6e261f 100%);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 7px 18px rgba(0, 0, 0, 0.28);
}

.hypnos-btn--ghost {
    background: rgba(24, 13, 11, 0.72);
}

.hypnos-news-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.hypnos-highlight-card {
    position: relative;
    display: flex;
    min-height: 112px;
    overflow: hidden;
    border: 1px solid rgba(120, 66, 55, 0.88);
    background: linear-gradient(145deg, #2a1713, #160b0a);
    color: inherit !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.hypnos-highlight-card:hover {
    transform: translateY(-3px);
    border-color: #c69d58;
}

.hypnos-highlight-card img {
    width: 41%;
    min-width: 105px;
    object-fit: cover;
    opacity: 0.84;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hypnos-highlight-card:hover img {
    transform: scale(1.04);
    opacity: 1;
}

.hypnos-highlight-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
}

.hypnos-highlight-card strong {
    display: block;
    margin-bottom: 7px;
    color: #efd7a5;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    line-height: 1.25;
}

.hypnos-highlight-card small {
    color: #bca98f;
    font-size: 11px;
    line-height: 1.5;
}

.hypnos-news-feed {
    padding-top: 6px;
}

.hypnos-news-feed__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(201, 170, 113, 0.22);
}

.hypnos-news-feed h2 {
    margin: 7px 0 0;
    font-size: 27px;
}

.hypnos-news-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.hypnos-news-filters a {
    padding: 7px 11px;
    border: 1px solid rgba(120, 66, 55, 0.85);
    background: #22110e;
    color: #bda987 !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.18s ease;
}

.hypnos-news-filters a:hover,
.hypnos-news-filters a.is-active {
    border-color: #c69d58;
    background: #4c211a;
    color: #f5dfad !important;
}

.hypnos-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.hypnos-news-card {
    overflow: hidden;
    border: 1px solid rgba(120, 66, 55, 0.82);
    background: linear-gradient(180deg, #251411 0%, #150b09 100%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hypnos-news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 170, 113, 0.75);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
}

.hypnos-news-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}

.hypnos-news-card__image {
    position: relative;
    display: block;
    min-height: 198px;
    overflow: hidden;
}

.hypnos-news-card--featured .hypnos-news-card__image {
    min-height: 300px;
}

.hypnos-news-card__image img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hypnos-news-card:hover .hypnos-news-card__image img {
    transform: scale(1.045);
}

.hypnos-news-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(18, 8, 7, 0.76) 100%);
}

.hypnos-news-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(95, 37, 29, 0.92);
    color: #fff3d5 !important;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
}

.hypnos-news-card__image .hypnos-news-badge {
    position: absolute;
    top: 14px;
    left: 14px;
}

.hypnos-news-badge--2 {
    background: rgba(64, 79, 111, 0.94);
}

.hypnos-news-badge--3 {
    background: rgba(73, 99, 54, 0.94);
}

.hypnos-news-card__body {
    display: flex;
    flex-direction: column;
    padding: 20px 21px 18px;
}

.hypnos-news-card--featured .hypnos-news-card__body {
    justify-content: center;
    padding: 28px;
}

.hypnos-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    color: #9e8b72;
    font-size: 10px;
    text-transform: uppercase;
}

.hypnos-news-card__meta a {
    color: #c5a466 !important;
    text-decoration: none !important;
}

.hypnos-news-card h3 {
    margin: 13px 0 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    line-height: 1.3;
}

.hypnos-news-card--featured h3 {
    font-size: 27px;
}

.hypnos-news-card h3 a {
    color: #eed9ad !important;
    text-decoration: none !important;
}

.hypnos-news-card p {
    flex: 1;
    margin: 0;
    color: #b9a78f;
    font-size: 12px;
    line-height: 1.7;
}

.hypnos-news-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 17px;
    padding-top: 14px;
    border-top: 1px solid rgba(201, 170, 113, 0.14);
}

.hypnos-news-card__read {
    color: #d9b96f !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-decoration: none !important;
    text-transform: uppercase;
}

.hypnos-news-card__admin {
    display: flex;
    gap: 6px;
}

.hypnos-news-card__admin a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(201, 170, 113, 0.28);
    color: #d8bd83 !important;
    text-decoration: none !important;
}

.hypnos-news-card__admin a.is-delete {
    color: #dc7566 !important;
}

.hypnos-news-empty {
    padding: 65px 30px;
    border: 1px dashed rgba(201, 170, 113, 0.32);
    background: rgba(33, 17, 14, 0.6);
    text-align: center;
}

.hypnos-news-empty i {
    color: #b9995b;
    font-size: 38px;
}

.hypnos-news-empty h3 {
    margin: 15px 0 8px;
    color: #ead5aa;
    font-family: Georgia, 'Times New Roman', serif;
}

.hypnos-news-empty p {
    color: #a89479;
}

.hypnos-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 27px 0 4px;
}

.hypnos-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 31px;
    height: 31px;
    padding: 0 9px;
    border: 1px solid rgba(120, 66, 55, 0.88);
    background: #22110e;
    color: #c7ad7c !important;
    text-decoration: none !important;
}

.hypnos-pagination a:hover,
.hypnos-pagination a.is-active {
    border-color: #c69d58;
    background: #5f281f;
    color: #fff1cf !important;
}

.hypnos-news-adminbox {
    margin: 0 0 20px;
    padding: 15px;
    border: 1px solid rgba(201, 170, 113, 0.27);
    background: rgba(34, 17, 14, 0.78);
}

.hypnos-news-adminbox__form {
    margin-top: 14px;
    padding: 18px;
    background: #1b0e0c;
}

.hypnos-news-adminbox__form p {
    margin: 14px 0 7px;
    color: #d8c29a;
}

.hypnos-news-adminbox__hint {
    padding: 9px 11px;
    border-left: 3px solid #9b793e;
    background: rgba(155, 121, 62, 0.11);
    color: #bca98f !important;
    font-size: 11px;
}

.hypnos-article {
    overflow: hidden;
    margin: -20px;
    border: 1px solid rgba(120, 66, 55, 0.84);
    background: #160b09;
}

.hypnos-article__cover {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.hypnos-article__cover img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.hypnos-article__cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 8, 7, 0.1) 10%, rgba(15, 8, 7, 0.95) 100%);
}

.hypnos-article__heading {
    position: absolute;
    right: 42px;
    bottom: 35px;
    left: 42px;
}

.hypnos-article h1 {
    max-width: 800px;
    margin: 12px 0 10px;
    font-size: 37px;
    line-height: 1.15;
}

.hypnos-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #c4b294;
    font-size: 11px;
    text-transform: uppercase;
}

.hypnos-article__content {
    padding: 35px 42px;
    color: #c8b69d;
    font-size: 13px;
    line-height: 1.85;
}

.hypnos-article__content h2,
.hypnos-article__content h3,
.hypnos-article__content h4 {
    color: #ead3a7;
    font-family: Georgia, 'Times New Roman', serif;
}

.hypnos-article__content a {
    color: #d9b96f !important;
}

.hypnos-article__content img {
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(201, 170, 113, 0.28);
}

.hypnos-article__content blockquote {
    margin: 20px 0;
    padding: 15px 18px;
    border-left: 3px solid #9b793e;
    background: rgba(155, 121, 62, 0.09);
    color: #d5c2a5;
}

.hypnos-article__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 20px 42px 28px;
    border-top: 1px solid rgba(201, 170, 113, 0.16);
}

.hypnos-article__delete {
    color: #d47567 !important;
    text-decoration: none !important;
}

@media (max-width: 950px) {
    .hypnos-news-hero__content {
        width: 82%;
    }

    .hypnos-news-highlights {
        grid-template-columns: 1fr;
    }

    .hypnos-news-card--featured {
        display: block;
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    .hypnos-news-hero__content {
        width: 100%;
        padding: 38px 28px;
    }

    .hypnos-news-hero h1 {
        font-size: 31px;
    }

    .hypnos-news-grid {
        grid-template-columns: 1fr;
    }

    .hypnos-news-feed__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .hypnos-news-filters {
        justify-content: flex-start;
    }

    .hypnos-article__heading {
        right: 25px;
        left: 25px;
    }

    .hypnos-article h1 {
        font-size: 29px;
    }

    .hypnos-article__content,
    .hypnos-article__footer {
        padding-right: 25px;
        padding-left: 25px;
    }
}
