.rcmt-test-app,
.rcmt-related-box,
.rcmt-archive-card {
    box-sizing: border-box;
    font-family: inherit;
}

.rcmt-test-app {
    margin: 28px 0;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 55%, #fff7ed 100%);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
    overflow: hidden;
}

.rcmt-test-hero {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #ea580c 140%);
    color: #fff;
}

.rcmt-test-hero h2 {
    margin: 8px 0 4px;
    color: #fff;
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.18;
}

.rcmt-test-hero p {
    margin: 0;
    color: rgba(255,255,255,.82);
}

.rcmt-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.12);
    color: #c2410c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.rcmt-test-hero .rcmt-pill {
    background: rgba(255,255,255,.12);
    color: #fed7aa;
}

.rcmt-timer {
    flex: 0 0 auto;
    min-width: 92px;
    text-align: center;
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 23px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.rcmt-test-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.rcmt-test-summary span {
    padding: 8px 11px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.rcmt-question-area {
    padding: 24px;
}

.rcmt-question-count {
    color: #64748b;
    font-weight: 800;
    margin-bottom: 10px;
}

.rcmt-question-title {
    margin: 0 0 18px;
    font-size: 21px;
    line-height: 1.42;
    color: #0f172a;
}

.rcmt-options {
    display: grid;
    gap: 12px;
}

.rcmt-option {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.rcmt-option:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border-color: rgba(249, 115, 22, .42);
}

.rcmt-option input {
    margin-top: 4px;
}

.rcmt-option.is-selected {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.14);
}

.rcmt-question-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.rcmt-question-meta span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
}

.rcmt-test-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px 24px 24px;
}

.rcmt-test-actions button,
.rcmt-submit-again {
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 900;
    cursor: pointer;
    background: #0f172a;
    color: #fff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.rcmt-test-actions button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.rcmt-test-actions .rcmt-submit {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.rcmt-result {
    margin: 0 24px 24px;
    padding: 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.rcmt-score-big {
    font-size: 42px;
    font-weight: 950;
    color: #0f172a;
    line-height: 1;
}

.rcmt-review-list {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.rcmt-review-item {
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
    border-left: 5px solid #94a3b8;
}

.rcmt-review-item.is-correct {
    border-left-color: #16a34a;
}

.rcmt-review-item.is-wrong {
    border-left-color: #dc2626;
}

.rcmt-related-box {
    margin: 30px 0;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0f172a, #1e293b 68%, #7c2d12);
    color: #fff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.rcmt-related-head h3 {
    margin: 10px 0 6px;
    color: #fff;
    font-size: 24px;
}

.rcmt-related-head p {
    margin: 0 0 16px;
    color: rgba(255,255,255,.76);
}

.rcmt-related-grid,
.rcmt-archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.rcmt-related-card,
.rcmt-archive-card {
    display: block;
    text-decoration: none !important;
    color: inherit;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    transition: transform .15s ease, box-shadow .15s ease;
}

.rcmt-related-card:hover,
.rcmt-archive-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.16);
}

.rcmt-related-card strong,
.rcmt-archive-card h3 {
    display: block;
    color: inherit;
    line-height: 1.25;
    margin: 8px 0;
}

.rcmt-related-card span,
.rcmt-archive-card p {
    display: block;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}

.rcmt-related-card em,
.rcmt-archive-card em {
    display: inline-block;
    margin-top: 12px;
    color: #fed7aa;
    font-style: normal;
    font-weight: 900;
}

.rcmt-archive-card {
    background: #fff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.10);
}

.rcmt-archive-card p {
    color: #64748b;
}

.rcmt-archive-card em {
    color: #ea580c;
}

.rcmt-empty {
    padding: 18px;
    border-radius: 14px;
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
}

@media (max-width: 640px) {
    .rcmt-test-hero {
        flex-direction: column;
        padding: 20px;
    }
    .rcmt-timer {
        width: 100%;
    }
    .rcmt-question-area,
    .rcmt-test-summary,
    .rcmt-test-actions {
        padding-left: 18px;
        padding-right: 18px;
    }
    .rcmt-test-actions button {
        width: 100%;
    }
    .rcmt-result {
        margin-left: 18px;
        margin-right: 18px;
    }
}

/* Version 1.0.2: exciting premium mock-test cards. */
.rcmt-premium-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    align-items:stretch;
}
.rcmt-premium-card,
.rcmt-premium-card *{
    box-sizing:border-box;
}
.rcmt-premium-card.rcmt-archive-card,
.rcmt-premium-card.rcmt-related-card{
    position:relative;
    isolation:isolate;
    display:flex;
    flex-direction:column;
    min-height:360px;
    padding:24px;
    overflow:hidden;
    color:#fff!important;
    text-decoration:none!important;
    border-radius:28px;
    background:
        radial-gradient(circle at 16% 8%, rgba(59,130,246,.32), transparent 34%),
        radial-gradient(circle at 92% 0%, rgba(249,115,22,.22), transparent 38%),
        linear-gradient(145deg,#081735 0%,#0d234a 46%,#071326 100%);
    border:1px solid rgba(148,163,184,.24);
    box-shadow:0 24px 56px rgba(8,23,53,.26), inset 0 1px 0 rgba(255,255,255,.12);
    transform:translateZ(0);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rcmt-premium-card.rcmt-archive-card:hover,
.rcmt-premium-card.rcmt-related-card:hover{
    transform:translateY(-5px);
    box-shadow:0 32px 76px rgba(8,23,53,.34), 0 0 0 1px rgba(249,115,22,.18), inset 0 1px 0 rgba(255,255,255,.16);
}
.rcmt-premium-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;
    opacity:.62;
    background:
        linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px) 0 0/44px 44px,
        linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px) 0 0/44px 44px;
    mask-image:linear-gradient(180deg,#000,transparent 78%);
}
.rcmt-premium-card::after{
    content:"";
    position:absolute;
    inset:auto -28% -44% 16%;
    z-index:-1;
    height:58%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(249,115,22,.23),transparent 65%);
    filter:blur(10px);
    opacity:.9;
}
.rcmt-card-accent-blue.rcmt-premium-card{
    border-color:rgba(56,189,248,.42);
    background:
        radial-gradient(circle at 13% 8%,rgba(14,165,233,.34),transparent 34%),
        radial-gradient(circle at 92% 0%,rgba(59,130,246,.25),transparent 38%),
        linear-gradient(145deg,#06172f 0%,#0a2a55 48%,#071326 100%);
}
.rcmt-card-accent-purple.rcmt-premium-card{
    border-color:rgba(168,85,247,.42);
    background:
        radial-gradient(circle at 13% 8%,rgba(168,85,247,.33),transparent 34%),
        radial-gradient(circle at 92% 0%,rgba(249,115,22,.20),transparent 38%),
        linear-gradient(145deg,#0a1230 0%,#181b4d 50%,#071326 100%);
}
.rcmt-card-accent-green.rcmt-premium-card{
    border-color:rgba(34,197,94,.38);
    background:
        radial-gradient(circle at 13% 8%,rgba(34,197,94,.24),transparent 34%),
        radial-gradient(circle at 92% 0%,rgba(59,130,246,.22),transparent 38%),
        linear-gradient(145deg,#071b2d 0%,#0d2d4c 50%,#071326 100%);
}
.rcmt-card-glow{
    position:absolute;
    inset:0;
    pointer-events:none;
    border-radius:inherit;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.08), inset 0 0 34px rgba(14,165,233,.10);
}
.rcmt-card-ribbon{
    position:absolute;
    top:0;
    right:0;
    z-index:2;
    padding:9px 18px 10px 22px;
    border-radius:0 28px 0 18px;
    background:linear-gradient(135deg,#ff9a18,#f15a18);
    color:#fff;
    font-size:12px;
    font-weight:950;
    letter-spacing:.01em;
    box-shadow:0 14px 30px rgba(249,115,22,.28);
}
.rcmt-card-countdown{
    position:absolute;
    top:44px;
    right:18px;
    z-index:1;
    display:flex;
    min-width:74px;
    min-height:58px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:8px 9px;
    border-radius:0 0 18px 18px;
    background:linear-gradient(180deg,rgba(15,23,42,.68),rgba(15,23,42,.22));
    border:1px solid rgba(255,255,255,.10);
    border-top:0;
    color:#fff;
    backdrop-filter:blur(8px);
}
.rcmt-card-countdown strong{
    display:block;
    color:#fbbf24;
    font-size:20px;
    font-weight:950;
    line-height:1;
}
.rcmt-card-countdown small{
    display:block;
    max-width:74px;
    color:rgba(255,255,255,.86);
    font-size:9px;
    font-weight:900;
    line-height:1.15;
    text-transform:uppercase;
    text-align:center;
}
.rcmt-card-top{
    display:flex;
    gap:16px;
    align-items:flex-start;
    min-height:96px;
    padding-right:78px;
}
.rcmt-card-emblem{
    flex:0 0 62px;
    width:62px;
    height:62px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:22px;
    background:linear-gradient(145deg,#ffb22e,#f97316 52%,#b93808);
    color:#fff;
    font-size:20px;
    font-weight:950;
    letter-spacing:-.04em;
    box-shadow:0 16px 28px rgba(249,115,22,.24), inset 0 1px 0 rgba(255,255,255,.32);
}
.rcmt-card-accent-blue .rcmt-card-emblem{
    background:linear-gradient(145deg,#38bdf8,#2563eb 56%,#1d4ed8);
    box-shadow:0 16px 28px rgba(37,99,235,.26), inset 0 1px 0 rgba(255,255,255,.32);
}
.rcmt-card-accent-purple .rcmt-card-emblem{
    background:linear-gradient(145deg,#c084fc,#7c3aed 58%,#4c1d95);
    box-shadow:0 16px 28px rgba(124,58,237,.28), inset 0 1px 0 rgba(255,255,255,.32);
}
.rcmt-card-accent-green .rcmt-card-emblem{
    background:linear-gradient(145deg,#4ade80,#16a34a 58%,#166534);
    box-shadow:0 16px 28px rgba(22,163,74,.24), inset 0 1px 0 rgba(255,255,255,.32);
}
.rcmt-card-title-wrap{
    min-width:0;
}
.rcmt-premium-card .rcmt-card-type{
    padding:6px 12px;
    background:linear-gradient(135deg,#2b7cff,#155bd8);
    color:#fff!important;
    box-shadow:0 8px 18px rgba(37,99,235,.28);
}
.rcmt-premium-card h3{
    margin:12px 0 0!important;
    color:#fff!important;
    font-size:clamp(20px,2.1vw,28px)!important;
    font-weight:950!important;
    line-height:1.12!important;
    letter-spacing:-.035em;
}
.rcmt-card-chips{
    display:flex;
    flex-wrap:wrap;
    gap:9px;
    margin:20px 0 18px;
    min-height:76px;
}
.rcmt-card-chips span{
    display:inline-flex;
    align-items:center;
    min-height:30px;
    padding:6px 11px;
    border-radius:999px;
    background:rgba(59,130,246,.18);
    border:1px solid rgba(147,197,253,.12);
    color:rgba(255,255,255,.88);
    font-size:12px;
    font-weight:750;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}
.rcmt-card-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    margin-top:auto;
    padding:17px 0;
    border-top:1px solid rgba(255,255,255,.10);
    border-bottom:1px solid rgba(255,255,255,.10);
}
.rcmt-card-stats span{
    display:grid;
    grid-template-columns:auto 1fr;
    grid-template-areas:"icon strong" "icon small";
    align-items:center;
    column-gap:8px;
    min-width:0;
    padding:0 10px;
    color:#fff;
}
.rcmt-card-stats span+span{
    border-left:1px solid rgba(255,255,255,.10);
}
.rcmt-card-stats i{
    grid-area:icon;
    width:28px;
    height:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:rgba(255,255,255,.10);
    color:#bfdbfe;
    font-style:normal;
    font-size:17px;
}
.rcmt-card-stats strong{
    grid-area:strong;
    display:block;
    min-width:0;
    color:#fff;
    font-size:17px;
    font-weight:950;
    line-height:1.08;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.rcmt-card-stats small{
    grid-area:small;
    display:block;
    color:rgba(255,255,255,.68);
    font-size:11px;
    font-weight:700;
    line-height:1.2;
}
.rcmt-card-cta{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    min-height:54px;
    margin-top:18px;
    border-radius:17px;
    background:linear-gradient(135deg,#ffad1f 0%,#ff7a00 42%,#f04f12 100%);
    color:#fff;
    font-size:18px;
    font-weight:950;
    box-shadow:0 18px 34px rgba(249,115,22,.30), inset 0 1px 0 rgba(255,255,255,.32);
    transition:transform .2s ease, box-shadow .2s ease;
}
.rcmt-premium-card:hover .rcmt-card-cta{
    transform:translateY(-1px);
    box-shadow:0 22px 42px rgba(249,115,22,.38), inset 0 1px 0 rgba(255,255,255,.36);
}
.rcmt-card-cta b{
    font-size:22px;
    line-height:1;
}
.rcmt-card-foot{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-top:18px;
    color:rgba(255,255,255,.76);
    font-size:12px;
    font-weight:800;
}
.rcmt-card-foot span:last-child{
    color:#fde68a;
}
.rcmt-related-box-premium{
    position:relative;
    overflow:hidden;
    padding:28px;
    border:1px solid rgba(148,163,184,.22);
    background:
        radial-gradient(circle at 0% 0%,rgba(249,115,22,.22),transparent 32%),
        radial-gradient(circle at 100% 0%,rgba(59,130,246,.26),transparent 34%),
        linear-gradient(135deg,#071326 0%,#0f2344 52%,#071326 100%);
}
.rcmt-related-box-premium .rcmt-related-head{
    max-width:760px;
    margin-bottom:18px;
}
.rcmt-related-box-premium .rcmt-pill{
    background:rgba(249,115,22,.16);
    color:#fed7aa;
}
.rcmt-related-box-premium .rcmt-related-head h3{
    margin:8px 0 6px;
    font-size:clamp(24px,3vw,34px);
    letter-spacing:-.025em;
}
.rcmt-related-box-premium .rcmt-related-head p{
    color:rgba(255,255,255,.76);
}
@media(max-width:900px){
    .rcmt-premium-grid{grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:16px}
    .rcmt-premium-card.rcmt-archive-card,.rcmt-premium-card.rcmt-related-card{min-height:0;padding:20px;border-radius:22px}
    .rcmt-card-ribbon{border-radius:0 22px 0 16px}
    .rcmt-card-top{padding-right:66px;gap:13px}
    .rcmt-card-emblem{width:54px;height:54px;flex-basis:54px;border-radius:18px;font-size:17px}
    .rcmt-card-stats{grid-template-columns:1fr;gap:10px;padding:14px 0}
    .rcmt-card-stats span{padding:0;border-left:0!important}
    .rcmt-card-chips{min-height:0}
}
@media(max-width:560px){
    .rcmt-premium-grid{grid-template-columns:1fr}
    .rcmt-card-top{padding-right:0;padding-top:58px}
    .rcmt-card-countdown{top:39px;right:14px;min-width:68px}
    .rcmt-card-chips span{font-size:11px}
    .rcmt-card-cta{font-size:16px;min-height:50px}
    .rcmt-card-foot{flex-direction:column;gap:5px}
}

/* Version 1.0.3: optional compact mock-test cards. Classic remains the default. */
.rcmt-compact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:14px;
}
.rcmt-compact-card.rcmt-archive-card,
.rcmt-compact-card.rcmt-related-card{
    display:flex;
    flex-direction:column;
    gap:9px;
    padding:16px;
    border-radius:18px;
    text-decoration:none!important;
    background:#fff;
    color:#0f172a!important;
    border:1px solid rgba(15,23,42,.10);
    box-shadow:0 10px 28px rgba(15,23,42,.08);
    transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.rcmt-compact-card.rcmt-related-card{
    background:rgba(255,255,255,.10);
    color:#fff!important;
    border-color:rgba(255,255,255,.14);
}
.rcmt-compact-card:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 40px rgba(15,23,42,.14);
    border-color:rgba(249,115,22,.36);
}
.rcmt-compact-card .rcmt-compact-type{
    display:inline-flex;
    width:fit-content;
    padding:5px 10px;
    border-radius:999px;
    background:rgba(249,115,22,.12);
    color:#c2410c;
    font-size:11px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.02em;
}
.rcmt-compact-card.rcmt-related-card .rcmt-compact-type{
    background:rgba(249,115,22,.18);
    color:#fed7aa;
}
.rcmt-compact-card strong{
    color:inherit!important;
    font-size:17px;
    line-height:1.25;
}
.rcmt-compact-meta{
    color:#64748b!important;
    font-size:13px;
    font-weight:700;
}
.rcmt-compact-card.rcmt-related-card .rcmt-compact-meta{
    color:rgba(255,255,255,.72)!important;
}
.rcmt-compact-card em{
    margin-top:auto;
    color:#ea580c!important;
    font-style:normal;
    font-weight:950;
}
.rcmt-compact-card.rcmt-related-card em{
    color:#fed7aa!important;
}
.rcmt-related-box-compact{
    background:linear-gradient(135deg,#0f172a,#1e293b 68%,#7c2d12);
}


/* Version 1.0.6: public archive and homepage shortcode loading fix. */
.rcmt-public-archive-template{
    width:min(1180px,calc(100% - 32px));
    margin:28px auto 56px;
}
.rcmt-public-archive-hero{
    margin:0 0 24px;
    padding:26px;
    border-radius:24px;
    background:linear-gradient(135deg,#ffffff 0%,#f8fafc 64%,#fff7ed 100%);
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 18px 45px rgba(15,23,42,.08);
}
.rcmt-public-archive-hero h1{
    margin:10px 0 8px;
    color:#0f172a;
    font-size:clamp(30px,4vw,48px);
    line-height:1.05;
    font-weight:950;
    letter-spacing:-.04em;
}
.rcmt-public-archive-hero p{
    max-width:780px;
    margin:0;
    color:#64748b;
    font-size:17px;
    line-height:1.6;
}
.rcmt-public-archive-list .rcmt-archive-grid,
.rcl-premium-mock-tests-shortcode .rcmt-archive-grid{
    width:100%;
}
.rcl-premium-mock-tests-shortcode .rcmt-archive-card,
.rcmt-public-archive-list .rcmt-archive-card{
    text-decoration:none!important;
}
@media (max-width:640px){
    .rcmt-public-archive-template{width:min(100% - 20px,1180px);margin-top:18px}
    .rcmt-public-archive-hero{padding:20px;border-radius:20px}
}


/* Version 1.0.7: Classic archive/homepage cards now match the working article card look. */
.rcmt-archive-grid-classic{
    grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
    gap:18px;
}
.rcmt-classic-unified-card.rcmt-archive-card{
    display:flex;
    flex-direction:column;
    gap:12px;
    min-height:230px;
    padding:20px;
    border-radius:20px;
    text-decoration:none!important;
    color:#fff!important;
    background:linear-gradient(135deg,rgba(15,23,42,.96),rgba(30,41,59,.94) 62%,rgba(124,45,18,.72));
    border:1px solid rgba(255,255,255,.16);
    box-shadow:0 18px 42px rgba(15,23,42,.18), inset 0 1px 0 rgba(255,255,255,.09);
}
.rcmt-classic-unified-card.rcmt-archive-card:hover{
    transform:translateY(-2px);
    box-shadow:0 22px 54px rgba(15,23,42,.24), inset 0 1px 0 rgba(255,255,255,.12);
    border-color:rgba(249,115,22,.34);
}
.rcmt-classic-unified-card .rcmt-pill{
    background:rgba(249,115,22,.16)!important;
    color:#fed7aa!important;
}
.rcmt-classic-unified-card strong{
    display:block;
    margin:4px 0 0!important;
    color:#fff!important;
    font-size:clamp(18px,2vw,22px);
    font-weight:950;
    line-height:1.22;
}
.rcmt-classic-unified-card span:not(.rcmt-pill){
    display:block;
    color:rgba(255,255,255,.76)!important;
    font-size:15px;
    line-height:1.55;
}
.rcmt-classic-unified-card em{
    display:inline-flex;
    width:fit-content;
    margin-top:auto!important;
    color:#fed7aa!important;
    font-style:normal;
    font-weight:950;
    font-size:16px;
}
@media(max-width:640px){
    .rcmt-archive-grid-classic{grid-template-columns:1fr;gap:14px}
    .rcmt-classic-unified-card.rcmt-archive-card{min-height:0;padding:18px;border-radius:18px}
}

/* Version 1.0.8: grouped exam/vacancy card with all available tests inside one card. */
.rcmt-grouped-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:20px;
    align-items:stretch;
}
.rcmt-related-box-grouped .rcmt-grouped-grid{
    grid-template-columns:1fr;
}
.rcmt-exam-group-card,
.rcmt-exam-group-card *{
    box-sizing:border-box;
}
.rcmt-exam-group-card{
    position:relative;
    isolation:isolate;
    display:flex;
    flex-direction:column;
    gap:16px;
    min-height:100%;
    padding:22px;
    overflow:hidden;
    border-radius:24px;
    color:#fff;
    background:
        radial-gradient(circle at 12% 5%,rgba(59,130,246,.20),transparent 32%),
        radial-gradient(circle at 95% 0%,rgba(249,115,22,.20),transparent 34%),
        linear-gradient(135deg,rgba(15,23,42,.98),rgba(30,41,59,.96) 58%,rgba(124,45,18,.78));
    border:1px solid rgba(255,255,255,.16);
    box-shadow:0 20px 48px rgba(15,23,42,.20), inset 0 1px 0 rgba(255,255,255,.10);
}
.rcmt-exam-group-card:before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;
    opacity:.42;
    background:
        linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px) 0 0/42px 42px,
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px) 0 0/42px 42px;
    mask-image:linear-gradient(180deg,#000,transparent 86%);
}
.rcmt-exam-group-card:after{
    content:"";
    position:absolute;
    right:-18%;
    bottom:-38%;
    z-index:-1;
    width:64%;
    height:48%;
    border-radius:999px;
    background:radial-gradient(circle,rgba(249,115,22,.26),transparent 68%);
    filter:blur(12px);
}
.rcmt-group-card-accent-blue{
    background:
        radial-gradient(circle at 12% 5%,rgba(14,165,233,.28),transparent 32%),
        radial-gradient(circle at 95% 0%,rgba(59,130,246,.18),transparent 34%),
        linear-gradient(135deg,#081735,#0d254c 58%,#071326);
}
.rcmt-group-card-accent-purple{
    background:
        radial-gradient(circle at 12% 5%,rgba(168,85,247,.24),transparent 32%),
        radial-gradient(circle at 95% 0%,rgba(249,115,22,.18),transparent 34%),
        linear-gradient(135deg,#0b1531,#1c214e 58%,#071326);
}
.rcmt-group-card-accent-green{
    background:
        radial-gradient(circle at 12% 5%,rgba(34,197,94,.20),transparent 32%),
        radial-gradient(circle at 95% 0%,rgba(59,130,246,.18),transparent 34%),
        linear-gradient(135deg,#081b2d,#0d2e4e 58%,#071326);
}
.rcmt-group-card-head{
    display:flex;
    gap:15px;
    align-items:flex-start;
}
.rcmt-group-emblem{
    flex:0 0 58px;
    width:58px;
    height:58px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:linear-gradient(145deg,#ffb22e,#f97316 54%,#b93808);
    color:#fff;
    font-size:19px;
    font-weight:950;
    letter-spacing:-.04em;
    box-shadow:0 16px 28px rgba(249,115,22,.24), inset 0 1px 0 rgba(255,255,255,.32);
}
.rcmt-group-card-accent-blue .rcmt-group-emblem{background:linear-gradient(145deg,#38bdf8,#2563eb 56%,#1d4ed8);box-shadow:0 16px 28px rgba(37,99,235,.26), inset 0 1px 0 rgba(255,255,255,.32)}
.rcmt-group-card-accent-purple .rcmt-group-emblem{background:linear-gradient(145deg,#c084fc,#7c3aed 58%,#4c1d95);box-shadow:0 16px 28px rgba(124,58,237,.28), inset 0 1px 0 rgba(255,255,255,.32)}
.rcmt-group-card-accent-green .rcmt-group-emblem{background:linear-gradient(145deg,#4ade80,#16a34a 58%,#166534);box-shadow:0 16px 28px rgba(22,163,74,.24), inset 0 1px 0 rgba(255,255,255,.32)}
.rcmt-group-title-wrap{
    min-width:0;
}
.rcmt-exam-group-card .rcmt-group-pill{
    background:rgba(249,115,22,.16)!important;
    color:#fed7aa!important;
}
.rcmt-exam-group-card h3{
    margin:9px 0 6px!important;
    color:#fff!important;
    font-size:clamp(20px,2.3vw,28px)!important;
    font-weight:950!important;
    line-height:1.14!important;
    letter-spacing:-.035em;
}
.rcmt-exam-group-card p{
    margin:0!important;
    color:rgba(255,255,255,.75)!important;
    font-size:14px;
    line-height:1.5;
}
.rcmt-group-summary{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
}
.rcmt-group-summary span{
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width:0;
    padding:11px 10px;
    border-radius:16px;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.11);
}
.rcmt-group-summary strong{
    color:#fff;
    font-size:18px;
    font-weight:950;
    line-height:1.05;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.rcmt-group-summary small{
    color:rgba(255,255,255,.64);
    font-size:11px;
    font-weight:800;
    line-height:1.2;
}
.rcmt-group-test-picker{
    display:grid;
    gap:9px;
}
.rcmt-group-test-row{
    display:grid;
    grid-template-columns:auto minmax(0,1fr) auto;
    gap:10px;
    align-items:center;
    min-height:58px;
    padding:10px 11px;
    border-radius:16px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.11);
    color:#fff!important;
    text-decoration:none!important;
    transition:transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.rcmt-group-test-row:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.15);
    border-color:rgba(249,115,22,.36);
    box-shadow:0 12px 28px rgba(0,0,0,.16);
}
.rcmt-group-test-icon{
    width:30px;
    height:30px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:rgba(249,115,22,.18);
    color:#fdba74;
    font-weight:950;
}
.rcmt-group-test-row-full .rcmt-group-test-icon{
    background:linear-gradient(135deg,#f97316,#ea580c);
    color:#fff;
}
.rcmt-group-test-main{
    min-width:0;
}
.rcmt-group-test-main strong{
    display:block;
    color:#fff!important;
    font-size:14px;
    font-weight:950;
    line-height:1.22;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.rcmt-group-test-main small{
    display:block;
    margin-top:2px;
    color:rgba(255,255,255,.63)!important;
    font-size:12px;
    font-weight:750;
    line-height:1.25;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.rcmt-group-test-row em{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:32px;
    padding:7px 11px;
    border-radius:999px;
    background:rgba(249,115,22,.15);
    color:#fed7aa!important;
    font-size:12px;
    font-style:normal;
    font-weight:950;
}
.rcmt-group-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:auto;
}
.rcmt-group-main-cta,
.rcmt-group-secondary-cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:11px 15px;
    border-radius:15px;
    text-decoration:none!important;
    font-weight:950;
}
.rcmt-group-main-cta{
    flex:1 1 auto;
    color:#fff!important;
    background:linear-gradient(135deg,#ffad1f 0%,#ff7a00 42%,#f04f12 100%);
    box-shadow:0 16px 30px rgba(249,115,22,.28), inset 0 1px 0 rgba(255,255,255,.30);
}
.rcmt-group-secondary-cta{
    flex:0 0 auto;
    color:#fed7aa!important;
    background:rgba(255,255,255,.09);
    border:1px solid rgba(255,255,255,.12);
}
.rcmt-exam-group-card-compact{
    padding:16px;
    border-radius:18px;
}
.rcmt-exam-group-card-compact .rcmt-group-summary{
    display:none;
}
.rcmt-exam-group-card-compact .rcmt-group-emblem{
    width:48px;height:48px;flex-basis:48px;border-radius:16px;font-size:16px;
}
.rcmt-exam-group-card-compact h3{
    font-size:19px!important;
}
@media(max-width:760px){
    .rcmt-grouped-grid{grid-template-columns:1fr;gap:14px}
    .rcmt-exam-group-card{padding:18px;border-radius:20px}
    .rcmt-group-card-head{gap:12px}
    .rcmt-group-emblem{width:50px;height:50px;flex-basis:50px;border-radius:17px;font-size:16px}
    .rcmt-group-summary{grid-template-columns:1fr 1fr 1fr;gap:7px}
    .rcmt-group-summary span{padding:9px 8px}
    .rcmt-group-summary strong{font-size:16px}
    .rcmt-group-test-row{grid-template-columns:auto minmax(0,1fr);gap:9px}
    .rcmt-group-test-row em{grid-column:2;width:max-content;margin-top:2px}
    .rcmt-group-actions{flex-direction:column}
    .rcmt-group-main-cta,.rcmt-group-secondary-cta{width:100%}
}

/* Version 1.0.9: grouped card color controls + 5 light and 5 dark templates. */
.rcmt-exam-group-card{
    --rcmt-user-accent:#f97316;
    --rcmt-user-secondary:#2563eb;
    --rcmt-user-dark:#0f172a;
    --rcmt-user-light:#ffffff;
}
.rcmt-exam-group-card .rcmt-group-emblem{
    background:linear-gradient(145deg,var(--rcmt-user-accent),#fb923c 54%,#9a3412)!important;
}
.rcmt-exam-group-card .rcmt-group-pill{
    color:#fff!important;
    background:linear-gradient(135deg,var(--rcmt-user-accent),#fb923c)!important;
}
.rcmt-exam-group-card .rcmt-group-main-cta{
    background:linear-gradient(135deg,var(--rcmt-user-accent),#fb923c 48%,#ea580c)!important;
}
.rcmt-exam-group-card .rcmt-group-test-row-full .rcmt-group-test-icon{
    background:linear-gradient(135deg,var(--rcmt-user-accent),#ea580c)!important;
}
.rcmt-exam-group-card .rcmt-group-test-row em{
    color:#fff!important;
    background:linear-gradient(135deg,var(--rcmt-user-accent),#fb923c)!important;
}

/* Light template common readability rules */
.rcmt-exam-group-card.rcmt-template-light-clean,
.rcmt-exam-group-card.rcmt-template-light-sapphire,
.rcmt-exam-group-card.rcmt-template-light-amber,
.rcmt-exam-group-card.rcmt-template-light-mint,
.rcmt-exam-group-card.rcmt-template-light-slate{
    color:#0f172a;
    border-color:rgba(15,23,42,.10);
    box-shadow:0 18px 42px rgba(15,23,42,.10), inset 0 1px 0 rgba(255,255,255,.84);
}
.rcmt-exam-group-card.rcmt-template-light-clean:before,
.rcmt-exam-group-card.rcmt-template-light-sapphire:before,
.rcmt-exam-group-card.rcmt-template-light-amber:before,
.rcmt-exam-group-card.rcmt-template-light-mint:before,
.rcmt-exam-group-card.rcmt-template-light-slate:before{
    opacity:.23;
    background:
        linear-gradient(90deg,rgba(15,23,42,.050) 1px,transparent 1px) 0 0/42px 42px,
        linear-gradient(rgba(15,23,42,.040) 1px,transparent 1px) 0 0/42px 42px;
}
.rcmt-exam-group-card.rcmt-template-light-clean:after,
.rcmt-exam-group-card.rcmt-template-light-sapphire:after,
.rcmt-exam-group-card.rcmt-template-light-amber:after,
.rcmt-exam-group-card.rcmt-template-light-mint:after,
.rcmt-exam-group-card.rcmt-template-light-slate:after{
    opacity:.68;
    background:radial-gradient(circle,var(--rcmt-user-accent),transparent 72%);
}
.rcmt-exam-group-card.rcmt-template-light-clean h3,
.rcmt-exam-group-card.rcmt-template-light-sapphire h3,
.rcmt-exam-group-card.rcmt-template-light-amber h3,
.rcmt-exam-group-card.rcmt-template-light-mint h3,
.rcmt-exam-group-card.rcmt-template-light-slate h3,
.rcmt-exam-group-card.rcmt-template-light-clean .rcmt-group-summary strong,
.rcmt-exam-group-card.rcmt-template-light-sapphire .rcmt-group-summary strong,
.rcmt-exam-group-card.rcmt-template-light-amber .rcmt-group-summary strong,
.rcmt-exam-group-card.rcmt-template-light-mint .rcmt-group-summary strong,
.rcmt-exam-group-card.rcmt-template-light-slate .rcmt-group-summary strong,
.rcmt-exam-group-card.rcmt-template-light-clean .rcmt-group-test-main strong,
.rcmt-exam-group-card.rcmt-template-light-sapphire .rcmt-group-test-main strong,
.rcmt-exam-group-card.rcmt-template-light-amber .rcmt-group-test-main strong,
.rcmt-exam-group-card.rcmt-template-light-mint .rcmt-group-test-main strong,
.rcmt-exam-group-card.rcmt-template-light-slate .rcmt-group-test-main strong{
    color:#0f172a!important;
}
.rcmt-exam-group-card.rcmt-template-light-clean p,
.rcmt-exam-group-card.rcmt-template-light-sapphire p,
.rcmt-exam-group-card.rcmt-template-light-amber p,
.rcmt-exam-group-card.rcmt-template-light-mint p,
.rcmt-exam-group-card.rcmt-template-light-slate p,
.rcmt-exam-group-card.rcmt-template-light-clean .rcmt-group-summary small,
.rcmt-exam-group-card.rcmt-template-light-sapphire .rcmt-group-summary small,
.rcmt-exam-group-card.rcmt-template-light-amber .rcmt-group-summary small,
.rcmt-exam-group-card.rcmt-template-light-mint .rcmt-group-summary small,
.rcmt-exam-group-card.rcmt-template-light-slate .rcmt-group-summary small,
.rcmt-exam-group-card.rcmt-template-light-clean .rcmt-group-test-main small,
.rcmt-exam-group-card.rcmt-template-light-sapphire .rcmt-group-test-main small,
.rcmt-exam-group-card.rcmt-template-light-amber .rcmt-group-test-main small,
.rcmt-exam-group-card.rcmt-template-light-mint .rcmt-group-test-main small,
.rcmt-exam-group-card.rcmt-template-light-slate .rcmt-group-test-main small{
    color:#64748b!important;
}
.rcmt-exam-group-card.rcmt-template-light-clean .rcmt-group-summary span,
.rcmt-exam-group-card.rcmt-template-light-sapphire .rcmt-group-summary span,
.rcmt-exam-group-card.rcmt-template-light-amber .rcmt-group-summary span,
.rcmt-exam-group-card.rcmt-template-light-mint .rcmt-group-summary span,
.rcmt-exam-group-card.rcmt-template-light-slate .rcmt-group-summary span,
.rcmt-exam-group-card.rcmt-template-light-clean .rcmt-group-test-row,
.rcmt-exam-group-card.rcmt-template-light-sapphire .rcmt-group-test-row,
.rcmt-exam-group-card.rcmt-template-light-amber .rcmt-group-test-row,
.rcmt-exam-group-card.rcmt-template-light-mint .rcmt-group-test-row,
.rcmt-exam-group-card.rcmt-template-light-slate .rcmt-group-test-row{
    background:rgba(255,255,255,.82);
    border-color:rgba(15,23,42,.09);
    color:#0f172a!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.76);
}
.rcmt-exam-group-card.rcmt-template-light-clean .rcmt-group-secondary-cta,
.rcmt-exam-group-card.rcmt-template-light-sapphire .rcmt-group-secondary-cta,
.rcmt-exam-group-card.rcmt-template-light-amber .rcmt-group-secondary-cta,
.rcmt-exam-group-card.rcmt-template-light-mint .rcmt-group-secondary-cta,
.rcmt-exam-group-card.rcmt-template-light-slate .rcmt-group-secondary-cta{
    color:#0f172a!important;
    background:rgba(255,255,255,.80);
    border-color:rgba(15,23,42,.10);
}
.rcmt-exam-group-card.rcmt-template-light-clean .rcmt-group-test-icon,
.rcmt-exam-group-card.rcmt-template-light-sapphire .rcmt-group-test-icon,
.rcmt-exam-group-card.rcmt-template-light-amber .rcmt-group-test-icon,
.rcmt-exam-group-card.rcmt-template-light-mint .rcmt-group-test-icon,
.rcmt-exam-group-card.rcmt-template-light-slate .rcmt-group-test-icon{
    color:var(--rcmt-user-accent);
    background:rgba(249,115,22,.12);
}

/* Five light templates */
.rcmt-exam-group-card.rcmt-template-light-clean{
    background:
        radial-gradient(circle at 10% 0%,rgba(249,115,22,.10),transparent 34%),
        linear-gradient(135deg,var(--rcmt-user-light) 0%,#f8fafc 58%,#fff7ed 100%);
}
.rcmt-exam-group-card.rcmt-template-light-sapphire{
    background:
        radial-gradient(circle at 10% 0%,rgba(37,99,235,.14),transparent 34%),
        radial-gradient(circle at 98% 0%,rgba(249,115,22,.10),transparent 34%),
        linear-gradient(135deg,#ffffff 0%,#eff6ff 62%,#f8fafc 100%);
}
.rcmt-exam-group-card.rcmt-template-light-amber{
    background:
        radial-gradient(circle at 12% 0%,rgba(249,115,22,.18),transparent 36%),
        linear-gradient(135deg,#ffffff 0%,#fff7ed 62%,#fffbeb 100%);
}
.rcmt-exam-group-card.rcmt-template-light-mint{
    background:
        radial-gradient(circle at 12% 0%,rgba(34,197,94,.14),transparent 36%),
        radial-gradient(circle at 98% 4%,rgba(14,165,233,.12),transparent 34%),
        linear-gradient(135deg,#ffffff 0%,#ecfdf5 62%,#f8fafc 100%);
}
.rcmt-exam-group-card.rcmt-template-light-slate{
    background:
        radial-gradient(circle at 12% 0%,rgba(100,116,139,.12),transparent 36%),
        linear-gradient(135deg,#ffffff 0%,#f1f5f9 62%,#ffffff 100%);
}

/* Five dark templates */
.rcmt-exam-group-card.rcmt-template-dark-regal{
    background:
        radial-gradient(circle at 12% 5%,rgba(59,130,246,.28),transparent 32%),
        radial-gradient(circle at 95% 0%,rgba(249,115,22,.24),transparent 34%),
        linear-gradient(135deg,var(--rcmt-user-dark),#1e293b 58%,#7c2d12);
}
.rcmt-exam-group-card.rcmt-template-dark-indigo{
    background:
        radial-gradient(circle at 12% 5%,rgba(99,102,241,.28),transparent 32%),
        radial-gradient(circle at 95% 0%,rgba(14,165,233,.18),transparent 34%),
        linear-gradient(135deg,#070b2a,#172554 58%,#111827);
}
.rcmt-exam-group-card.rcmt-template-dark-purple{
    background:
        radial-gradient(circle at 12% 5%,rgba(168,85,247,.32),transparent 32%),
        radial-gradient(circle at 95% 0%,rgba(249,115,22,.20),transparent 34%),
        linear-gradient(135deg,#130825,#2e1065 58%,#111827);
}
.rcmt-exam-group-card.rcmt-template-dark-emerald{
    background:
        radial-gradient(circle at 12% 5%,rgba(16,185,129,.24),transparent 32%),
        radial-gradient(circle at 95% 0%,rgba(59,130,246,.18),transparent 34%),
        linear-gradient(135deg,#061b1d,#064e3b 58%,#071326);
}
.rcmt-exam-group-card.rcmt-template-dark-carbon{
    background:
        radial-gradient(circle at 12% 5%,rgba(249,115,22,.28),transparent 32%),
        radial-gradient(circle at 95% 0%,rgba(148,163,184,.15),transparent 34%),
        linear-gradient(135deg,#030712,#111827 58%,#431407);
}

/* Version 1.1.0: Theme Studio live card controls. These variables are scoped to Mock Test grouped cards only. */
.rcmt-grouped-grid{
    grid-template-columns:repeat(auto-fit,minmax(min(100%,var(--rcmt-card-grid-min,330px)),1fr));
    gap:var(--rcmt-card-gap,20px);
}
.rcmt-related-box-grouped .rcmt-grouped-grid{
    gap:var(--rcmt-card-gap,20px);
}
.rcmt-exam-group-card{
    min-height:var(--rcmt-card-min-height,360px);
    padding:var(--rcmt-card-padding,22px);
    border-radius:var(--rcmt-card-radius,24px);
    font-family:var(--rcmt-card-font-family,inherit);
    font-size:var(--rcmt-card-font-size,15px);
    border-color:rgba(255,255,255,calc(var(--rcmt-card-border-strength,16) / 100));
    box-shadow:0 calc(var(--rcmt-card-shadow-strength,20) * 1px) calc(var(--rcmt-card-shadow-strength,20) * 2.4px) rgba(15,23,42,calc((var(--rcmt-card-shadow-strength,20) + 8) / 140)), inset 0 1px 0 rgba(255,255,255,.10);
}
.rcmt-exam-group-card .rcmt-group-emblem{
    width:var(--rcmt-card-emblem-size,58px);
    height:var(--rcmt-card-emblem-size,58px);
    flex-basis:var(--rcmt-card-emblem-size,58px);
    border-radius:calc(var(--rcmt-card-radius,24px) * .82);
    font-size:calc(var(--rcmt-card-emblem-size,58px) * .33);
}
.rcmt-exam-group-card h3{
    font-size:var(--rcmt-card-title-size,24px)!important;
}
.rcmt-exam-group-card p,
.rcmt-group-test-main strong{
    font-size:var(--rcmt-card-font-size,15px);
}
.rcmt-group-summary small,
.rcmt-group-test-main small,
.rcmt-group-test-row em{
    font-size:var(--rcmt-card-meta-size,12px);
}
.rcmt-group-test-row{
    min-height:var(--rcmt-card-row-height,58px);
    border-radius:calc(var(--rcmt-card-radius,24px) * .67);
}
.rcmt-group-main-cta,
.rcmt-group-secondary-cta{
    min-height:var(--rcmt-card-button-height,46px);
    border-radius:var(--rcmt-card-button-radius,15px);
}
.rcmt-exam-group-card-compact{
    min-height:auto;
}

/* Version 1.1.2: Clean Template Reset. All experimental card skins are disabled by PHP; this is the single clean card system. */
.rcmt-related-box-grouped,
.rcmt-related-box-classic.rcmt-related-box-grouped{
    background:#fff!important;
    color:#0f172a!important;
    border:1px solid #e2e8f0!important;
    box-shadow:0 10px 28px rgba(15,23,42,.06)!important;
}
.rcmt-related-box-grouped .rcmt-related-head h3{
    color:#0f172a!important;
}
.rcmt-related-box-grouped .rcmt-related-head p{
    color:#64748b!important;
}
.rcmt-related-box-grouped .rcmt-related-head .rcmt-pill{
    background:#fff7ed!important;
    color:#c2410c!important;
    border:1px solid #fed7aa!important;
}
.rcmt-exam-group-card.rcmt-template-clean{
    color:var(--rcmt-user-dark,#0f172a)!important;
    background:var(--rcmt-user-light,#fff)!important;
    border:1px solid rgba(15,23,42,calc(max(var(--rcmt-card-border-strength,10), 1) / 120))!important;
    box-shadow:0 calc(var(--rcmt-card-shadow-strength,10) * 1px) calc(var(--rcmt-card-shadow-strength,10) * 3px) rgba(15,23,42,calc((var(--rcmt-card-shadow-strength,10) + 4) / 220))!important;
    min-height:var(--rcmt-card-min-height,0)!important;
    padding:var(--rcmt-card-padding,20px)!important;
    border-radius:var(--rcmt-card-radius,18px)!important;
    gap:14px!important;
}
.rcmt-exam-group-card.rcmt-template-clean:before,
.rcmt-exam-group-card.rcmt-template-clean:after{
    display:none!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-card-head{
    gap:13px!important;
    align-items:flex-start!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-emblem{
    width:var(--rcmt-card-emblem-size,48px)!important;
    height:var(--rcmt-card-emblem-size,48px)!important;
    flex-basis:var(--rcmt-card-emblem-size,48px)!important;
    border-radius:14px!important;
    background:#fff7ed!important;
    color:var(--rcmt-user-accent,#f97316)!important;
    border:1px solid #fed7aa!important;
    box-shadow:none!important;
    font-size:calc(var(--rcmt-card-emblem-size,48px) * .32)!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-pill{
    background:#fff7ed!important;
    color:#c2410c!important;
    border:1px solid #fed7aa!important;
    padding:5px 10px!important;
    font-size:11px!important;
}
.rcmt-exam-group-card.rcmt-template-clean h3{
    color:var(--rcmt-user-dark,#0f172a)!important;
    font-size:var(--rcmt-card-title-size,21px)!important;
    line-height:1.22!important;
    letter-spacing:-.02em!important;
    margin:8px 0 6px!important;
}
.rcmt-exam-group-card.rcmt-template-clean p{
    color:#64748b!important;
    font-size:var(--rcmt-card-font-size,15px)!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-summary{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-summary span{
    background:#f8fafc!important;
    border:1px solid #e2e8f0!important;
    border-radius:12px!important;
    padding:10px!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-summary strong{
    color:var(--rcmt-user-dark,#0f172a)!important;
    font-size:17px!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-summary small{
    color:#64748b!important;
    font-size:var(--rcmt-card-meta-size,12px)!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-picker{
    gap:8px!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-row{
    min-height:var(--rcmt-card-row-height,54px)!important;
    background:#fff!important;
    color:var(--rcmt-user-dark,#0f172a)!important;
    border:1px solid #e2e8f0!important;
    border-radius:12px!important;
    box-shadow:none!important;
    padding:9px 10px!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-row:hover{
    transform:translateY(-1px)!important;
    background:#fff7ed!important;
    border-color:#fdba74!important;
    box-shadow:0 8px 22px rgba(249,115,22,.10)!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-icon,
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-row-full .rcmt-group-test-icon{
    width:28px!important;
    height:28px!important;
    border-radius:9px!important;
    background:#fff7ed!important;
    color:var(--rcmt-user-accent,#f97316)!important;
    border:1px solid #fed7aa!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-main strong{
    color:var(--rcmt-user-dark,#0f172a)!important;
    font-size:var(--rcmt-card-font-size,15px)!important;
    font-weight:850!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-main small{
    color:#64748b!important;
    font-size:var(--rcmt-card-meta-size,12px)!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-row em{
    color:var(--rcmt-user-accent,#f97316)!important;
    background:transparent!important;
    border:0!important;
    padding:0!important;
    min-height:0!important;
    font-size:var(--rcmt-card-meta-size,12px)!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-actions{
    padding-top:2px!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-main-cta{
    min-height:var(--rcmt-card-button-height,46px)!important;
    border-radius:var(--rcmt-card-button-radius,12px)!important;
    color:#fff!important;
    background:var(--rcmt-user-accent,#f97316)!important;
    box-shadow:0 10px 20px rgba(249,115,22,.18)!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-main-cta:hover{
    filter:brightness(.96)!important;
}
.rcmt-exam-group-card.rcmt-template-clean .rcmt-group-secondary-cta{
    min-height:var(--rcmt-card-button-height,46px)!important;
    border-radius:var(--rcmt-card-button-radius,12px)!important;
    color:var(--rcmt-user-secondary,#1d4ed8)!important;
    background:#fff!important;
    border:1px solid #dbeafe!important;
}
.rcmt-clean-public-note{display:none!important}

/* Clean fallback for individual classic cards if the listing mode is switched back to individual. */
.rcmt-classic-unified-card.rcmt-archive-card,
.rcmt-classic-unified-card.rcmt-related-card{
    background:#fff!important;
    color:#0f172a!important;
    border:1px solid #e2e8f0!important;
    box-shadow:0 10px 28px rgba(15,23,42,.06)!important;
    border-radius:18px!important;
}
.rcmt-classic-unified-card strong,
.rcmt-classic-unified-card h3{color:#0f172a!important}
.rcmt-classic-unified-card p{color:#64748b!important}
.rcmt-classic-unified-card em{color:#f97316!important}
@media(max-width:760px){
    .rcmt-exam-group-card.rcmt-template-clean{padding:16px!important;border-radius:16px!important}
    .rcmt-exam-group-card.rcmt-template-clean .rcmt-group-summary{grid-template-columns:repeat(3,minmax(0,1fr))!important}
    .rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-row{grid-template-columns:auto minmax(0,1fr) auto!important}
    .rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-row em{grid-column:auto!important;margin-top:0!important}
}
@media(max-width:520px){
    .rcmt-exam-group-card.rcmt-template-clean .rcmt-group-card-head{flex-direction:row!important}
    .rcmt-exam-group-card.rcmt-template-clean .rcmt-group-summary{grid-template-columns:1fr!important}
    .rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-row{grid-template-columns:auto minmax(0,1fr)!important}
    .rcmt-exam-group-card.rcmt-template-clean .rcmt-group-test-row em{grid-column:2!important;margin-top:3px!important}
}

/* Version 1.1.3: Compact clean exam-card system based on Design 1. */
.rcmt-grouped-grid{
    display:grid!important;
    grid-template-columns:repeat(auto-fit,minmax(min(100%,var(--rcmt-card-grid-min,300px)),1fr))!important;
    gap:var(--rcmt-card-gap,16px)!important;
    align-items:stretch!important;
}
.rcmt-related-box-grouped .rcmt-grouped-grid{
    grid-template-columns:1fr!important;
}
.rcmt-related-box-grouped,
.rcmt-related-box-classic.rcmt-related-box-grouped{
    background:#fff!important;
    color:#0f172a!important;
    border:1px solid #e5e7eb!important;
    box-shadow:0 8px 22px rgba(15,23,42,.05)!important;
    border-radius:18px!important;
}
.rcmt-related-box-grouped .rcmt-related-head .rcmt-pill{
    background:#fff7ed!important;
    color:#c2410c!important;
    border:1px solid #fed7aa!important;
    font-weight:650!important;
}
.rcmt-clean-exam-card.rcmt-exam-group-card{
    position:relative!important;
    isolation:auto!important;
    display:flex!important;
    flex-direction:column!important;
    gap:13px!important;
    min-height:0!important;
    padding:var(--rcmt-card-padding,18px)!important;
    overflow:hidden!important;
    border-radius:var(--rcmt-card-radius,16px)!important;
    color:var(--rcmt-user-dark,#0f172a)!important;
    background:var(--rcmt-user-light,#fff)!important;
    border:1px solid rgba(148,163,184,.32)!important;
    box-shadow:0 8px 24px rgba(15,23,42,.055)!important;
    font-family:var(--rcmt-card-font-family,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif)!important;
    font-size:var(--rcmt-card-font-size,14px)!important;
    line-height:1.45!important;
}
.rcmt-clean-exam-card.rcmt-exam-group-card:before,
.rcmt-clean-exam-card.rcmt-exam-group-card:after{
    display:none!important;
}
.rcmt-clean-exam-card:hover{
    transform:translateY(-1px)!important;
    border-color:rgba(249,115,22,.34)!important;
    box-shadow:0 12px 30px rgba(15,23,42,.08)!important;
}
.rcmt-clean-card-head{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:12px!important;
    margin:0!important;
}
.rcmt-clean-badge{
    display:inline-flex!important;
    align-items:center!important;
    width:max-content!important;
    min-height:28px!important;
    padding:5px 12px!important;
    border-radius:999px!important;
    background:#eef4ff!important;
    color:var(--rcmt-user-secondary,#1d4ed8)!important;
    border:0!important;
    font-size:13px!important;
    font-weight:650!important;
    line-height:1!important;
}
.rcmt-clean-card-icon{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    flex:0 0 34px!important;
    width:34px!important;
    height:34px!important;
    border-radius:999px!important;
    color:#334155!important;
    background:#f8fafc!important;
    border:1px solid #e2e8f0!important;
    box-shadow:none!important;
    font-size:16px!important;
    font-weight:500!important;
}
.rcmt-clean-card-title,
.rcmt-clean-exam-card h3.rcmt-clean-card-title{
    margin:4px 0 0!important;
    color:#0f172a!important;
    font-size:min(var(--rcmt-card-title-size,18px),19px)!important;
    font-weight:620!important;
    line-height:1.25!important;
    letter-spacing:-.015em!important;
}
.rcmt-clean-card-meta,
.rcmt-clean-exam-card p.rcmt-clean-card-meta{
    margin:0!important;
    color:#64748b!important;
    font-size:var(--rcmt-card-meta-size,12px)!important;
    font-weight:450!important;
    line-height:1.45!important;
}
.rcmt-clean-test-list{
    display:grid!important;
    gap:8px!important;
    padding-top:13px!important;
    margin-top:2px!important;
    border-top:1px solid #e5e7eb!important;
}
.rcmt-clean-test-row{
    display:grid!important;
    grid-template-columns:auto minmax(0,1fr) auto!important;
    align-items:center!important;
    gap:10px!important;
    min-height:var(--rcmt-card-row-height,44px)!important;
    padding:8px 10px!important;
    border-radius:10px!important;
    color:#0f172a!important;
    text-decoration:none!important;
    background:#fff!important;
    border:1px solid #e5e7eb!important;
    box-shadow:none!important;
    transition:border-color .16s ease, background .16s ease, transform .16s ease!important;
}
.rcmt-clean-test-row:hover{
    transform:translateY(-1px)!important;
    background:#fffaf7!important;
    border-color:rgba(249,115,22,.36)!important;
    box-shadow:none!important;
}
.rcmt-clean-test-icon{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:24px!important;
    height:24px!important;
    border-radius:8px!important;
    color:#475569!important;
    background:#f8fafc!important;
    border:1px solid #e2e8f0!important;
    font-size:12px!important;
    font-weight:650!important;
}
.rcmt-clean-test-row-full .rcmt-clean-test-icon{
    color:var(--rcmt-user-accent,#f97316)!important;
    background:#fff7ed!important;
    border-color:#fed7aa!important;
}
.rcmt-clean-test-name{
    min-width:0!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    color:#172033!important;
    font-size:14px!important;
    font-weight:480!important;
    line-height:1.25!important;
}
.rcmt-clean-test-start{
    display:inline-flex!important;
    align-items:center!important;
    gap:5px!important;
    color:var(--rcmt-user-accent,#f97316)!important;
    background:transparent!important;
    padding:0!important;
    border-radius:0!important;
    font-size:13px!important;
    font-weight:650!important;
    font-style:normal!important;
    white-space:nowrap!important;
}
.rcmt-clean-test-start b,
.rcmt-clean-view-all b{
    font-weight:650!important;
}
.rcmt-clean-card-actions{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    flex-wrap:wrap!important;
    gap:10px!important;
    margin-top:auto!important;
    padding-top:12px!important;
    border-top:1px dashed #e5e7eb!important;
}
.rcmt-clean-view-all,
.rcmt-clean-job-link{
    display:inline-flex!important;
    align-items:center!important;
    gap:6px!important;
    text-decoration:none!important;
    border:0!important;
    background:transparent!important;
    box-shadow:none!important;
    min-height:0!important;
    padding:0!important;
    border-radius:0!important;
    font-size:14px!important;
    font-weight:620!important;
    line-height:1.2!important;
}
.rcmt-clean-view-all{
    color:#0f172a!important;
}
.rcmt-clean-job-link{
    color:#64748b!important;
}
.rcmt-clean-view-all:hover,
.rcmt-clean-job-link:hover{
    color:var(--rcmt-user-accent,#f97316)!important;
}
.rcmt-clean-exam-card .rcmt-group-summary,
.rcmt-clean-exam-card .rcmt-group-card-head,
.rcmt-clean-exam-card .rcmt-group-actions,
.rcmt-clean-exam-card .rcmt-group-test-picker{
    display:none!important;
}
@media(max-width:760px){
    .rcmt-clean-exam-card.rcmt-exam-group-card{padding:16px!important;border-radius:15px!important;gap:12px!important}
    .rcmt-clean-card-title,.rcmt-clean-exam-card h3.rcmt-clean-card-title{font-size:18px!important}
    .rcmt-clean-test-row{grid-template-columns:auto minmax(0,1fr) auto!important;min-height:42px!important;padding:8px 9px!important}
    .rcmt-clean-test-name{font-size:13px!important}
    .rcmt-clean-test-start{font-size:12px!important}
}

/* v1.1.3 Compact Clean Exam Card — one consistent design for homepage, archive and article related sections. */
.rcmt-grouped-grid{
    grid-template-columns:repeat(auto-fit,minmax(var(--rcmt-card-grid-min,300px),1fr));
    gap:var(--rcmt-card-gap,18px)!important;
    align-items:stretch;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker,
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker.rcmt-exam-group-card-archive,
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker.rcmt-exam-group-card-related,
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker.rcmt-exam-group-card-studio{
    display:flex!important;
    flex-direction:column!important;
    gap:0!important;
    min-height:var(--rcmt-card-min-height,0px)!important;
    padding:var(--rcmt-card-padding,18px)!important;
    border-radius:var(--rcmt-card-radius,16px)!important;
    color:var(--rcmt-user-dark,#0f172a)!important;
    background:var(--rcmt-user-light,#fff)!important;
    background-image:none!important;
    border:1px solid rgba(203,213,225,calc(.45 + (var(--rcmt-card-border-strength,8) / 60)))!important;
    box-shadow:0 calc(5px + (var(--rcmt-card-shadow-strength,6) * .45px)) calc(16px + (var(--rcmt-card-shadow-strength,6) * 1.2px)) rgba(15,23,42,.055)!important;
    overflow:hidden!important;
    font-family:var(--rcmt-card-font-family,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif)!important;
    font-size:clamp(13px,var(--rcmt-card-font-size,14px),15px)!important;
    line-height:1.45!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker:before,
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker:after{display:none!important;content:none!important}
.rcmt-clean-card-top{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:10px!important;
    margin-bottom:17px!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-pill{
    display:inline-flex!important;
    align-items:center!important;
    width:max-content!important;
    min-height:30px!important;
    padding:6px 14px!important;
    border-radius:999px!important;
    background:#eef4ff!important;
    color:var(--rcmt-user-secondary,#1d4ed8)!important;
    border:0!important;
    font-size:12px!important;
    line-height:1!important;
    font-weight:650!important;
    letter-spacing:0!important;
    text-transform:none!important;
    box-shadow:none!important;
}
.rcmt-clean-card-icon{
    flex:0 0 var(--rcmt-card-emblem-size,38px)!important;
    width:var(--rcmt-card-emblem-size,38px)!important;
    height:var(--rcmt-card-emblem-size,38px)!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    color:#64748b!important;
    background:#fff!important;
    border:1px solid #e2e8f0!important;
    border-radius:999px!important;
    box-shadow:0 4px 12px rgba(15,23,42,.04)!important;
}
.rcmt-clean-card-icon svg{width:56%!important;height:56%!important;display:block!important}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker h3{
    color:var(--rcmt-user-dark,#0f172a)!important;
    font-size:clamp(17px,var(--rcmt-card-title-size,18px),20px)!important;
    font-weight:650!important;
    line-height:1.24!important;
    letter-spacing:-.015em!important;
    margin:0 0 12px!important;
    padding:0!important;
}
.rcmt-clean-card-meta,
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker p.rcmt-clean-card-meta{
    display:flex!important;
    align-items:center!important;
    flex-wrap:wrap!important;
    gap:8px!important;
    color:#667085!important;
    font-size:clamp(12px,var(--rcmt-card-meta-size,12px),14px)!important;
    font-weight:450!important;
    line-height:1.35!important;
    margin:0!important;
}
.rcmt-clean-card-meta b{font-weight:500!important;color:#cbd5e1!important}
.rcmt-clean-card-divider{
    height:1px!important;
    width:100%!important;
    background:#e7edf5!important;
    margin:19px 0 14px!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-picker{
    display:grid!important;
    gap:9px!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row,
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row-full{
    display:grid!important;
    grid-template-columns:auto minmax(0,1fr) auto!important;
    align-items:center!important;
    gap:10px!important;
    min-height:var(--rcmt-card-row-height,46px)!important;
    padding:9px 12px!important;
    border-radius:10px!important;
    color:var(--rcmt-user-dark,#0f172a)!important;
    background:#fff!important;
    border:1px solid #e4e9f2!important;
    box-shadow:none!important;
    text-decoration:none!important;
    transition:background .14s ease,border-color .14s ease,transform .14s ease,box-shadow .14s ease!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row:hover{
    transform:translateY(-1px)!important;
    background:#fffaf7!important;
    border-color:#fed7aa!important;
    box-shadow:0 8px 18px rgba(249,115,22,.08)!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-icon,
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row-full .rcmt-group-test-icon{
    width:24px!important;
    height:24px!important;
    min-width:24px!important;
    border:0!important;
    border-radius:0!important;
    color:#64748b!important;
    background:transparent!important;
    box-shadow:none!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-icon svg{width:18px!important;height:18px!important;display:block!important}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-main{min-width:0!important}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-main strong{
    display:block!important;
    color:var(--rcmt-user-dark,#0f172a)!important;
    font-size:clamp(13px,var(--rcmt-card-font-size,14px),15px)!important;
    font-weight:500!important;
    line-height:1.2!important;
    letter-spacing:0!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-main small{
    display:none!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row em{
    display:inline-flex!important;
    align-items:center!important;
    gap:4px!important;
    color:var(--rcmt-user-accent,#f97316)!important;
    background:transparent!important;
    border:0!important;
    min-height:0!important;
    padding:0!important;
    border-radius:0!important;
    font-size:13px!important;
    font-weight:650!important;
    font-style:normal!important;
    line-height:1!important;
    white-space:nowrap!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row em b{font-weight:650!important}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-actions{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:12px!important;
    flex-wrap:wrap!important;
    margin-top:16px!important;
    padding-top:15px!important;
    border-top:1px dashed #e2e8f0!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-main-cta{
    flex:0 1 auto!important;
    min-height:var(--rcmt-card-button-height,38px)!important;
    padding:8px 8px!important;
    border-radius:var(--rcmt-card-button-radius,10px)!important;
    color:var(--rcmt-user-dark,#0f172a)!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    font-size:13.5px!important;
    font-weight:650!important;
    text-decoration:none!important;
}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-main-cta b{color:var(--rcmt-user-accent,#f97316)!important;margin-left:4px!important}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-main-cta:hover{color:var(--rcmt-user-accent,#f97316)!important;filter:none!important}
.rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-secondary-cta{
    flex:0 0 auto!important;
    min-height:auto!important;
    padding:0!important;
    color:#64748b!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
    font-size:13px!important;
    font-weight:500!important;
}
@media(max-width:760px){
    .rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker{padding:16px!important;border-radius:15px!important}
    .rcmt-clean-card-top{margin-bottom:14px!important}
    .rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row{grid-template-columns:auto minmax(0,1fr) auto!important;gap:9px!important}
    .rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row em{grid-column:auto!important;margin-top:0!important}
}
@media(max-width:520px){
    .rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row{grid-template-columns:auto minmax(0,1fr)!important}
    .rcmt-exam-group-card.rcmt-template-clean.rcmt-clean-exam-picker .rcmt-group-test-row em{grid-column:2!important;width:max-content!important;margin-top:2px!important}
}

/* Version 1.1.5: optional backup themes. Default clean template remains unchanged. */
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-paper,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-blue,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-cream,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-mint,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-slate,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-blue-orange,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-ocean,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-purple,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-emerald,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-carbon{
    display:block!important;
    position:relative!important;
    overflow:hidden!important;
    min-height:var(--rcmt-card-min-height,0px)!important;
    padding:var(--rcmt-card-padding,18px)!important;
    border-radius:var(--rcmt-card-radius,16px)!important;
    font-family:var(--rcmt-card-font-family,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif)!important;
    font-size:var(--rcmt-card-font-size,14px)!important;
    text-decoration:none!important;
    box-sizing:border-box!important;
    transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease!important;
}
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-paper:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-paper:after,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-blue:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-blue:after,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-cream:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-cream:after,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-mint:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-mint:after,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-slate:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-slate:after,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-blue-orange:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-blue-orange:after,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-ocean:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-ocean:after,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-purple:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-purple:after,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-emerald:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-emerald:after,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-carbon:before,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-carbon:after{display:none!important;content:none!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-paper:hover,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-blue:hover,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-cream:hover,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-mint:hover,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-slate:hover,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-blue-orange:hover,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-ocean:hover,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-purple:hover,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-emerald:hover,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-color-carbon:hover{transform:translateY(-2px)!important}

/* Optional light themes: compact, readable and restrained. */
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-paper,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-blue,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-cream,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-mint,
.rcmt-exam-group-card.rcmt-clean-exam-picker.rcmt-template-lite-slate{
    color:#0f172a!important;
    border:1px solid rgba(15,23,42,.10)!important;
    box-shadow:0 calc(var(--rcmt-card-shadow-strength,6) * 1px) calc(var(--rcmt-card-shadow-strength,6) * 3px) rgba(15,23,42,.06)!important;
}
.rcmt-template-lite-paper{background:#ffffff!important}
.rcmt-template-lite-blue{background:linear-gradient(135deg,#ffffff 0%,#eff6ff 100%)!important}
.rcmt-template-lite-cream{background:linear-gradient(135deg,#ffffff 0%,#fff7ed 100%)!important}
.rcmt-template-lite-mint{background:linear-gradient(135deg,#ffffff 0%,#ecfdf5 100%)!important}
.rcmt-template-lite-slate{background:linear-gradient(135deg,#ffffff 0%,#f1f5f9 100%)!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-clean-card-top{display:flex!important;align-items:center!important;justify-content:space-between!important;margin-bottom:14px!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-pill{display:inline-flex!important;align-items:center!important;min-height:28px!important;padding:5px 11px!important;border-radius:999px!important;background:#fff7ed!important;color:var(--rcmt-user-accent,#f97316)!important;border:1px solid rgba(249,115,22,.12)!important;font-size:12px!important;font-weight:650!important;letter-spacing:.02em!important;text-transform:none!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-clean-card-icon{width:38px!important;height:38px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border-radius:50%!important;background:#f8fafc!important;color:#0f172a!important;border:1px solid #e2e8f0!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] h3{margin:0 0 12px!important;color:#0f172a!important;font-size:var(--rcmt-card-title-size,18px)!important;line-height:1.22!important;font-weight:620!important;letter-spacing:-.025em!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-clean-card-meta{margin:0 0 14px!important;display:flex!important;align-items:center!important;gap:9px!important;flex-wrap:wrap!important;color:#64748b!important;font-size:var(--rcmt-card-meta-size,12px)!important;font-weight:500!important;line-height:1.45!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-clean-card-meta b{color:#cbd5e1!important;font-weight:500!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-clean-card-divider{height:1px!important;background:#e2e8f0!important;margin:0 0 13px!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-test-picker{display:grid!important;gap:8px!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-test-row{display:grid!important;grid-template-columns:auto minmax(0,1fr) auto!important;gap:10px!important;align-items:center!important;min-height:var(--rcmt-card-row-height,44px)!important;padding:8px 10px!important;border-radius:11px!important;background:rgba(255,255,255,.86)!important;border:1px solid #e2e8f0!important;color:#0f172a!important;text-decoration:none!important;box-shadow:none!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-test-row:hover{transform:none!important;background:#ffffff!important;border-color:rgba(249,115,22,.28)!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-test-icon{width:28px!important;height:28px!important;border-radius:9px!important;background:#f8fafc!important;color:#64748b!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-test-main strong{display:block!important;color:#0f172a!important;font-size:13.5px!important;font-weight:560!important;line-height:1.25!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-test-main small{display:block!important;margin-top:2px!important;color:#64748b!important;font-size:11.5px!important;font-weight:450!important;line-height:1.25!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-test-row em{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:28px!important;padding:5px 8px!important;background:transparent!important;color:var(--rcmt-user-accent,#f97316)!important;font-size:12px!important;font-style:normal!important;font-weight:650!important;box-shadow:none!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-actions{display:flex!important;gap:10px!important;align-items:center!important;flex-wrap:wrap!important;margin-top:14px!important;padding-top:12px!important;border-top:1px dashed #e2e8f0!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-main-cta{display:inline-flex!important;min-height:auto!important;padding:0!important;background:transparent!important;color:#0f172a!important;box-shadow:none!important;font-size:13px!important;font-weight:650!important;text-decoration:none!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-secondary-cta{display:inline-flex!important;min-height:auto!important;padding:0!important;background:transparent!important;color:#64748b!important;border:0!important;font-size:12px!important;font-weight:600!important;text-decoration:none!important}

/* Optional colorful themes: compact blue/orange family and alternatives. */
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"]{
    color:#fff!important;
    border:1px solid rgba(255,255,255,.12)!important;
    box-shadow:0 calc(var(--rcmt-card-shadow-strength,10) * 1px) calc(var(--rcmt-card-shadow-strength,10) * 3px) rgba(15,23,42,.18)!important;
}
.rcmt-template-color-blue-orange{background:linear-gradient(145deg,#2d5797 0%,#254a86 58%,#1e3a6d 100%)!important}
.rcmt-template-color-ocean{background:linear-gradient(145deg,#0f4c81 0%,#075985 58%,#0c4a6e 100%)!important}
.rcmt-template-color-purple{background:linear-gradient(145deg,#3b2f86 0%,#4c1d95 58%,#2e1065 100%)!important}
.rcmt-template-color-emerald{background:linear-gradient(145deg,#047857 0%,#065f46 58%,#064e3b 100%)!important}
.rcmt-template-color-carbon{background:linear-gradient(145deg,#0f172a 0%,#1e293b 58%,#3b1d12 100%)!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-clean-card-top{display:flex!important;align-items:center!important;justify-content:space-between!important;margin-bottom:14px!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-pill{display:inline-flex!important;align-items:center!important;min-height:28px!important;padding:5px 11px!important;border-radius:999px!important;background:rgba(255,107,0,.95)!important;color:#fff!important;border:0!important;font-size:12px!important;font-weight:700!important;letter-spacing:.02em!important;text-transform:none!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-clean-card-icon{width:38px!important;height:38px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border-radius:50%!important;background:rgba(255,255,255,.12)!important;color:#fff!important;border:1px solid rgba(255,255,255,.18)!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] h3{margin:0 0 12px!important;color:#fff!important;font-size:var(--rcmt-card-title-size,18px)!important;line-height:1.23!important;font-weight:650!important;letter-spacing:-.025em!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-clean-card-meta{margin:0 0 14px!important;display:flex!important;align-items:center!important;gap:9px!important;flex-wrap:wrap!important;color:rgba(255,255,255,.72)!important;font-size:var(--rcmt-card-meta-size,12px)!important;font-weight:500!important;line-height:1.45!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-clean-card-meta b{color:rgba(255,255,255,.34)!important;font-weight:500!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-clean-card-divider{height:1px!important;background:rgba(255,255,255,.18)!important;margin:0 0 13px!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-test-picker{display:grid!important;gap:8px!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-test-row{display:grid!important;grid-template-columns:auto minmax(0,1fr) auto!important;gap:10px!important;align-items:center!important;min-height:var(--rcmt-card-row-height,44px)!important;padding:8px 10px!important;border-radius:11px!important;background:rgba(255,255,255,.10)!important;border:1px solid rgba(255,255,255,.14)!important;color:#fff!important;text-decoration:none!important;box-shadow:none!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-test-row:hover{transform:none!important;background:rgba(255,255,255,.14)!important;border-color:rgba(255,107,0,.36)!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-test-icon{width:28px!important;height:28px!important;border-radius:9px!important;background:rgba(255,255,255,.12)!important;color:#fed7aa!important;display:inline-flex!important;align-items:center!important;justify-content:center!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-test-main strong{display:block!important;color:#fff!important;font-size:13.5px!important;font-weight:600!important;line-height:1.25!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-test-main small{display:block!important;margin-top:2px!important;color:rgba(255,255,255,.66)!important;font-size:11.5px!important;font-weight:450!important;line-height:1.25!important;white-space:nowrap!important;overflow:hidden!important;text-overflow:ellipsis!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-test-row em{display:inline-flex!important;align-items:center!important;justify-content:center!important;min-height:28px!important;padding:5px 8px!important;background:transparent!important;color:#ffbf8a!important;font-size:12px!important;font-style:normal!important;font-weight:700!important;box-shadow:none!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-actions{display:flex!important;gap:10px!important;align-items:center!important;flex-wrap:wrap!important;margin-top:14px!important;padding-top:12px!important;border-top:1px dashed rgba(255,255,255,.22)!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-main-cta{display:inline-flex!important;min-height:auto!important;padding:0!important;background:transparent!important;color:#fff!important;box-shadow:none!important;font-size:13px!important;font-weight:700!important;text-decoration:none!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-main-cta b{color:#ffbf8a!important}
.rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-secondary-cta{display:inline-flex!important;min-height:auto!important;padding:0!important;background:transparent!important;color:rgba(255,255,255,.70)!important;border:0!important;font-size:12px!important;font-weight:600!important;text-decoration:none!important}

@media(max-width:640px){
    .rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-lite-"] .rcmt-group-test-row,
    .rcmt-exam-group-card.rcmt-clean-exam-picker[class*="rcmt-template-color-"] .rcmt-group-test-row{grid-template-columns:auto minmax(0,1fr) auto!important}
}

/* v1.1.7 Quality-controlled mock-test content */
.rcmt-test-preparation{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;padding:18px 24px;border-bottom:1px solid rgba(15,23,42,.08);background:#f8fafc}
.rcmt-test-preparation section{padding:16px;border-radius:16px;background:#fff;border:1px solid rgba(15,23,42,.09)}
.rcmt-test-preparation h3{margin:0 0 8px;color:#0f172a;font-size:16px;line-height:1.25}
.rcmt-test-preparation p{margin:0;color:#475569;font-size:14px;line-height:1.65}
.rcmt-card-excerpt{display:block;margin-top:8px;color:#64748b;font-size:13px;line-height:1.5}
.rcmt-public-archive-intro{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(260px,.75fr);gap:22px;align-items:center;max-width:1180px;margin:24px auto;padding:24px;border:1px solid rgba(15,23,42,.09);border-radius:22px;background:linear-gradient(135deg,#fff,#f8fafc 65%,#fff7ed);box-shadow:0 14px 38px rgba(15,23,42,.07)}
.rcmt-public-archive-kicker{display:inline-flex;padding:6px 10px;border-radius:999px;background:#fff7ed;color:#c2410c;font-size:11px;font-weight:900;letter-spacing:.05em;text-transform:uppercase}
.rcmt-public-archive-intro h2{margin:9px 0 8px;color:#0f172a;font-size:clamp(22px,3vw,30px);line-height:1.16}
.rcmt-public-archive-intro p{margin:0;color:#475569;line-height:1.72}
.rcmt-public-archive-intro ul{display:grid;gap:9px;margin:0;padding:0;list-style:none}
.rcmt-public-archive-intro li{display:grid;gap:2px;padding:12px 13px;border-radius:13px;background:#fff;border:1px solid rgba(15,23,42,.08)}
.rcmt-public-archive-intro li strong{color:#0f172a;font-size:13px}
.rcmt-public-archive-intro li span{color:#64748b;font-size:12px}
.rcmt-public-archive-list{max-width:1180px;margin:0 auto;padding:0 0 28px}
.rcmt-public-archive-list-title{margin:22px 0 14px;color:#0f172a;font-size:22px}
@media(max-width:760px){.rcmt-test-preparation{grid-template-columns:1fr;padding:16px 18px}.rcmt-public-archive-intro{grid-template-columns:1fr;margin:18px 14px;padding:18px}.rcmt-public-archive-list{padding-left:14px;padding-right:14px}.rcmt-public-archive-list-title{font-size:19px}}
