/* ==========================================================================
   HÍRLISTA – VÁLLALKOZUNK.HU
   ========================================================================== */

body {
    background: #fcfaf4;
}

/* Teljes szélesség a Hírek oldalon */
.page-id-478 #secondary {
    display: none;
}

.page-id-478 #primary {
    width: 100%;
    max-width: 100%;
    float: none;
}

/* Fejléc */
.pt-cv-view {
    margin-top: 20px;
}

.pt-cv-heading-container {
    border: 0;
}

/* Rács */
.pt-cv-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

/* Kártya */
.pt-cv-content-item {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 28px;
    background: #fff;
    border: 1px solid #f2e7de;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.pt-cv-content-item:hover {
    transform: scale(1.02);
    background: #f8fffd;
    border-color: #bdebe4;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
}

/* Kép */
.pt-cv-content-item .pt-cv-thumb-wrapper {
    width: 100%;
    height: 240px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 14px;
}

.pt-cv-content-item .pt-cv-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.pt-cv-content-item .pt-cv-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.pt-cv-content-item:hover .pt-cv-thumbnail img {
    transform: scale(1.04);
}

/* Kategória */
.pt-cv-taxonomy {
    margin-bottom: 12px;
}

/* Cím */
.pt-cv-content-item .pt-cv-title {
    margin: 0 0 20px;
    font-size: 1.55rem;
    line-height: 1.35;
    font-weight: 600;
}

.pt-cv-content-item .pt-cv-title a {
    color: #444;
    text-decoration: none;
    transition: color .2s ease;
}

.pt-cv-content-item .pt-cv-title a:hover {
    color: #00aaa5;
}

/* Kivonat */
.pt-cv-content-item .pt-cv-content {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Alsó sor */
.pt-cv-content-item .pt-cv-meta-fields {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #f4ede7;
    font-size: 13px;
    color: #888;
}

.pt-cv-content-item .pt-cv-readmore {
    display: inline-block;
    align-self: flex-start;

    margin-top: 18px;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;

    color: #00aaa5;
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;

    transition: color .2s ease;
}

.pt-cv-content-item .pt-cv-readmore::after {
    content: " →";
}

.pt-cv-content-item .pt-cv-readmore:hover {
    background: transparent;
    color: #008f8b;
    text-decoration: none;
}

/* Tablet */
@media(max-width:1000px) {
    .pt-cv-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media(max-width:650px) {
    .pt-cv-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pt-cv-content-item {
        min-height: auto;
        padding: 20px;
    }

    .pt-cv-content-item .pt-cv-thumbnail {
        height: 220px;
    }

    .pt-cv-content-item .pt-cv-title {
        font-size: 1.25rem;
    }
}

/* Képblokk */
.pt-cv-content-item .pt-cv-thumb-wrapper {
    width: 100%;
    height: 130px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 14px;
}

.pt-cv-content-item .pt-cv-thumb-wrapper>a {
    display: block;
    width: 100%;
    height: 100%;
}

.pt-cv-content-item img.pt-cv-thumbnail {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    border-radius: 0;
    transition: transform .35s ease;
}

.pt-cv-content-item:hover img.pt-cv-thumbnail {
    transform: scale(1.04);
}

.pt-cv-content-item .pt-cv-title {
    margin-top: 20px !important;
}

/* ==========================================================================
   Bővebben gomb
   ========================================================================== */

.pt-cv-content-item a.pt-cv-readmore {
    display: inline-flex;
    align-items: center;

    margin-top: 18px;
    padding: 0 !important;

    background: none !important;
    border: none !important;
    box-shadow: none !important;

    color: #00aaa5 !important;
    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
}

.pt-cv-content-item a.pt-cv-readmore::after {
    content: " →";
}

.pt-cv-content-item a.pt-cv-readmore:hover {
    color: #008f8b !important;
    background: none !important;
}

.pt-cv-content-item .pt-cv-content {
    min-height: 110px;
}