/* RFM Resource Cards — extracted from mu-plugin */
.rfm-res-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
            margin: 28px 0;
        }

        .rfm-res-card {
            background: #ffffff;
            border: 1px solid #c8cdd6;
            border-top: 3px solid #c9a84c;
            padding: 24px;
            border-radius: 2px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.04);
            transition: box-shadow 0.25s ease, transform 0.25s ease;
        }

        .rfm-res-card:hover {
            box-shadow: 0 4px 14px rgba(0,0,0,0.08);
            transform: translateY(-2px);
        }

        .rfm-res-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: #c9a84c;
            border: 1px solid #c9a84c;
            padding: 2px 8px;
            border-radius: 2px;
            margin-bottom: 12px;
        }

        .entry-content .rfm-res-card h3.rfm-res-title {
            font-family: 'Merriweather', Georgia, serif;
            font-size: 18px;
            font-weight: 700;
            color: #2a3f5e;
            margin: 0 0 6px;
            padding: 0;
            border: none;
        }

        .entry-content .rfm-res-card h3.rfm-res-title a {
            color: #2a3f5e !important;
            text-decoration: none !important;
            transition: color 0.2s ease;
        }

        .entry-content .rfm-res-card h3.rfm-res-title a:hover {
            color: #c9a84c !important;
        }

        .rfm-res-author {
            font-size: 14px;
            color: #5A6340;
            font-style: italic;
            margin: 0 0 12px;
        }

        .rfm-res-excerpt {
            font-size: 14px;
            color: #555;
            line-height: 1.6;
            margin: 0 0 16px;
        }

        .rfm-res-meta {
            border-top: 1px solid #dde0e6;
            padding-top: 12px;
            margin-bottom: 12px;
        }

        .rfm-res-meta-item {
            display: block;
            font-size: 12px;
            color: #2a3f5e;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.04em;
        }

        .rfm-res-meta-item strong {
            margin-right: 6px;
        }

        .entry-content a.rfm-res-link {
            font-family: 'Merriweather', serif;
            font-size: 13px;
            font-weight: 700;
            font-style: italic;
            color: #5A6340 !important;
            text-decoration: none !important;
            letter-spacing: 0.03em;
            transition: color 0.2s ease;
        }

        .entry-content a.rfm-res-link:hover {
            color: #c9a84c !important;
        }

        .rfm-res-empty {
            padding: 20px 24px;
            background: #faf6ee;
            border: 1px solid #c8cdd6;
            text-align: center;
            color: #888;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .rfm-res-grid {
                grid-template-columns: 1fr;
            }
        }
