/* RVS Hub Cards — external stylesheet (was wp_add_inline_style) */
.rvs-hub-tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin: 18px 0 34px;
    }

    .rvs-hub-tag-cloud a,
    .rvs-hub-tag-cloud span {
        display: inline-flex;
        align-items: center;
        padding: 7px 13px;
        border-radius: 999px;
        background: #f4f7f8;
        color: #0f172a;
        font-size: 14px;
        font-weight: 700;
        line-height: 1.2;
        text-decoration: none;
        border: 1px solid #e5eaee;
        transition: all .18s ease;
    }

    .rvs-hub-tag-cloud a:hover {
        background: #eaf2f4;
        border-color: #c9d8df;
        transform: translateY(-1px);
    }

    .rvs-hub-posts {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        margin: 28px 0;
        align-items: stretch;
    }

    .rvs-hub-post-card {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background: #fff;
        border: 1px solid #e6e8ec;
        border-radius: 22px;
        box-shadow: 0 10px 28px rgba(15, 23, 42, .055);
        transition: transform .18s ease, box-shadow .18s ease;
        min-height: 100%;
    }

    .rvs-hub-post-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(15, 23, 42, .095);
    }

    .rvs-hub-post-image {
        display: block;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #eef2f5;
    }

    .rvs-hub-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .rvs-hub-post-content {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 24px;
    }

    .rvs-hub-post-category {
        margin-bottom: 12px;
        color: #66789e;
        font-size: 12px;
        font-weight: 800;
        line-height: 1.25;
        letter-spacing: .055em;
        text-transform: uppercase;
    }

    .rvs-hub-post-title {
        margin: 0 0 22px;
        font-size: 25px;
        line-height: 1.22;
        font-weight: 850;
        color: #0f172a;
    }

    .rvs-hub-post-title a {
        color: inherit;
        text-decoration: none;
    }

    .rvs-hub-post-title a:hover {
        text-decoration: underline;
    }

    .rvs-hub-post-link {
        margin-top: auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        max-width: 100%;
        padding: 11px 20px;
        border: 1px solid #6b8799;
        border-radius: 999px;
        color: #0f172a !important;
        background: #fff;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.2;
        text-decoration: none !important;
        transition: all .18s ease;
    }

    .rvs-hub-post-link:hover {
        background: #0f172a;
        border-color: #0f172a;
        color: #fff !important;
    }

    .rvs-hub-pagination {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
        margin: 34px 0;
    }

    .rvs-hub-pagination a,
    .rvs-hub-pagination span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        height: 42px;
        padding: 0 12px;
        border: 1px solid #d8e0e6;
        border-radius: 999px;
        color: #0f172a;
        background: #fff;
        text-decoration: none;
        font-weight: 700;
    }

    .rvs-hub-pagination .current {
        background: #0f172a;
        border-color: #0f172a;
        color: #fff;
    }

    @media (max-width: 900px) {
        .rvs-hub-posts {
            grid-template-columns: 1fr;
        }
        .rvs-hub-post-title {
            font-size: 23px;
        }
    }

    @media (max-width: 640px) {
        .rvs-hub-posts {
            gap: 22px;
        }

        .rvs-hub-post-content {
            padding: 22px;
        }

        .rvs-hub-post-title {
            font-size: 21px;
        }

        .rvs-hub-tag-cloud a,
        .rvs-hub-tag-cloud span {
            font-size: 13px;
            padding: 7px 11px;
        }
    }
/*# sourceURL=rvs-hub-cards-style-inline-css */
