/* Resource grid — Fellowship → Resources audience cards. Ported verbatim from
   the mockup; --fel maps to --accent via the .section--fellowship scope. The
   count meta is hidden exactly as in the mockup. */

.rsx-sec { padding: 76px 0 88px; }
.rsx-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 48px; }
.rsx-card { display: grid; grid-template-columns: 140px 1fr; gap: 22px; align-items: start; cursor: pointer; color: inherit; text-decoration: none; transition: background 0.18s; padding: 22px; border-radius: 18px; border: 1px solid var(--line); background: #fff; }
.rsx-card:hover { background: var(--paper-3); }
.rsx-card .rsx-art { aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; position: relative; box-shadow: 0 12px 24px rgba(58,27,48,0.14), 0 3px 8px rgba(58,27,48,0.08); transition: transform 0.25s, box-shadow 0.25s; display: flex; align-items: center; justify-content: center; }
.rsx-card:hover .rsx-art { transform: translateY(-2px); box-shadow: 0 18px 32px rgba(58,27,48,0.20), 0 4px 10px rgba(58,27,48,0.10); }
.rsx-card .rsx-art::after { content: ''; position: absolute; inset: 0; background: radial-gradient(220px 140px at 100% 100%, rgba(255,255,255,0.12), transparent 60%); pointer-events: none; }
.rsx-glyph { width: 56%; max-width: 86px; height: auto; color: rgba(255,255,255,0.94); fill: currentColor; stroke: rgba(255,255,255,0.45); stroke-width: 1.4; position: relative; z-index: 1; }
.rsx-women   .rsx-art { background: linear-gradient(135deg, #5A2552 0%, #A862C9 50%, #C29CD7 100%); }
.rsx-children .rsx-art { background: linear-gradient(135deg, #1E3F5E 0%, #2C6A7E 50%, #6FB9CC 100%); }
.rsx-youth   .rsx-art { background: linear-gradient(135deg, #7A2A23 0%, #C04438 50%, #ED8275 100%); }
.rsx-family  .rsx-art { background: linear-gradient(135deg, #2B6038 0%, #41A769 50%, #8FD4A6 100%); }
.rsx-meta { display: none; }
.rsx-info { padding: 0; display: flex; flex-direction: column; gap: 10px; }
.rsx-info h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; letter-spacing: -0.5px; margin: 0; color: var(--ink); }
[dir="rtl"] .rsx-info h3 { font-family: var(--farsi); font-weight: 600; }
.rsx-info p { font-family: var(--serif); font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; font-style: italic; }
[dir="rtl"] .rsx-info p { font-family: var(--farsi); font-style: normal; }
.rsx-latest { display: flex; align-items: baseline; gap: 6px; margin-top: 2px; }
.rsx-latest-lbl { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }
.rsx-latest-t { font-family: var(--serif); font-weight: 500; font-size: 14px; letter-spacing: -0.2px; color: var(--ink); }
[dir="rtl"] .rsx-latest-t { font-family: var(--farsi); font-weight: 600; }
.rsx-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 13.5px; font-weight: 700; color: var(--accent); transition: gap 0.15s; }
.rsx-card:hover .rsx-cta { gap: 9px; color: var(--accent-deep); }
[dir="rtl"] .rsx-cta svg { transform: scaleX(-1); }
@media (max-width: 980px) { .rsx-grid { grid-template-columns: 1fr; gap: 18px; } }
@media (max-width: 600px) { .rsx-card { grid-template-columns: 100px 1fr; gap: 16px; padding: 16px; } }

/* Fellowship hub — mini resource promo (fel-rsx-sec) */
.fel-rsx-sec { padding: 80px 0 100px; border-top: 1px solid var(--line); background: #fff; }
.fel-rsx-head { text-align: center; margin: 0 auto 36px; max-width: 640px; }
.fel-rsx-head .eyebrow { color: var(--accent); display: inline-block; margin-bottom: 8px; }
.fel-rsx-head h2 { font-family: var(--serif); font-weight: 500; font-size: 36px; line-height: 1.15; letter-spacing: -0.8px; margin: 0 0 10px; color: var(--ink); text-wrap: balance; }
.fel-rsx-head p { font-size: 15px; line-height: 1.65; color: var(--ink-3); margin: 0 auto; max-width: 540px; }
.fel-rsx-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.fel-rsx-mini { display: flex; flex-direction: column; gap: 0; border-radius: 14px; overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; color: inherit; text-decoration: none; }
.fel-rsx-mini:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 14px 28px rgba(58,27,48,0.12); }
.fel-rsx-art { aspect-ratio: 5/3; position: relative; display: flex; align-items: center; justify-content: center; }
.fel-rsx-art svg { width: 44%; max-width: 90px; color: rgba(255,255,255,0.94); fill: currentColor; stroke: rgba(255,255,255,0.42); stroke-width: 1.4; }
.fel-rsx-mini.frx-women  .fel-rsx-art { background: linear-gradient(135deg, #5A2552 0%, #A862C9 100%); }
.fel-rsx-mini.frx-children .fel-rsx-art { background: linear-gradient(135deg, #1E3F5E 0%, #2C6A7E 100%); }
.fel-rsx-mini.frx-youth  .fel-rsx-art { background: linear-gradient(135deg, #7A2A23 0%, #C04438 100%); }
.fel-rsx-mini.frx-family .fel-rsx-art { background: linear-gradient(135deg, #2B6038 0%, #41A769 100%); }
.fel-rsx-name { padding: 16px 18px 18px; font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--ink); letter-spacing: -0.2px; }
.fel-rsx-cta { text-align: center; }
.fel-rsx-cta a { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--accent); padding: 12px 24px; border-radius: 999px; border: 1px solid var(--accent-tint); background: var(--accent-tint); transition: background 0.15s, color 0.15s, gap 0.15s; text-decoration: none; }
.fel-rsx-cta a:hover { background: var(--accent); color: #fff; gap: 11px; }
[dir="rtl"] .fel-rsx-cta a svg { transform: scaleX(-1); }
@media (max-width: 880px) { .fel-rsx-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .fel-rsx-row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding-bottom: 8px; } .fel-rsx-mini { flex: 0 0 200px; scroll-snap-align: start; } }
