.rvm-container {
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 32px 0 56px;
}

.rvm-hero {
    background: #f5f8f1;
    border: 1px solid #dbe7d1;
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 28px;
}

.rvm-kicker {
    margin: 0 0 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #50723c;
    font-weight: 700;
}

.rvm-hero h1 {
    margin: 0 0 10px;
    font-size: 2.2rem;
    line-height: 1.1;
}

.rvm-hero p:last-child {
    margin-bottom: 0;
    color: #425141;
}

.rvm-filter-form {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 28px;
}

.rvm-filter-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.rvm-filter-grid label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.rvm-filter-grid input,
.rvm-filter-grid select {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
}

.rvm-filter-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 16px;
}

.rvm-filter-actions button,
.rvm-filter-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px 14px;
    text-decoration: none;
    font-weight: 600;
}

.rvm-filter-actions button {
    border: none;
    background: #5d8c48;
    color: #fff;
    cursor: pointer;
}

.rvm-filter-actions a {
    background: #f3f4f6;
    color: #111827;
}

.rvm-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.rvm-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rvm-card-thumb img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.rvm-card-body {
    padding: 18px;
}

.rvm-card-title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.rvm-card-title a {
    color: #111827;
    text-decoration: none;
}

.rvm-card-excerpt {
    color: #4b5563;
    margin-bottom: 14px;
}

.rvm-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.rvm-card-meta span {
    background: #f3f4f6;
    color: #111827;
    font-size: 13px;
    border-radius: 999px;
    padding: 6px 10px;
}

.rvm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rvm-tag {
    background: #eef7e8;
    color: #416334;
    font-size: 13px;
    border-radius: 999px;
    padding: 6px 10px;
}

.rvm-single-header {
    margin-bottom: 28px;
}

.rvm-breadcrumb {
    margin-bottom: 10px;
}

.rvm-breadcrumb a {
    color: #5d8c48;
    text-decoration: none;
    font-weight: 600;
}

.rvm-single-header h1 {
    margin: 0 0 12px;
    font-size: 2.3rem;
    line-height: 1.1;
}

.rvm-intro {
    color: #374151;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.rvm-single-image {
    margin-bottom: 24px;
}

.rvm-single-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.rvm-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.rvm-info-card {
    background: #f8faf8;
    border: 1px solid #dbe7d1;
    border-radius: 16px;
    padding: 16px;
}

.rvm-info-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #4b5563;
}

.rvm-info-card span {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.rvm-taxonomies {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.rvm-tax-line {
    color: #374151;
}

.rvm-section {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 22px;
}

.rvm-section h2 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.45rem;
}

.rvm-content p:last-child {
    margin-bottom: 0;
}

.rvm-list,
.rvm-steps {
    margin: 0;
    padding-left: 22px;
}

.rvm-list li,
.rvm-steps li {
    margin-bottom: 10px;
}

.rvm-notes {
    color: #374151;
}

.rvm-pagination {
    margin-top: 28px;
}

.rvm-pagination .nav-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rvm-pagination a,
.rvm-pagination span {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    text-decoration: none;
}

@media (max-width: 1000px) {
    .rvm-filter-grid,
    .rvm-cards,
    .rvm-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .rvm-filter-grid,
    .rvm-cards,
    .rvm-info-grid {
        grid-template-columns: 1fr;
    }

    .rvm-hero h1,
    .rvm-single-header h1 {
        font-size: 1.8rem;
    }
}
