/*
 * 1yr Achievers Results – Dashboard stats + card grid (teal theme)
 * Bootstrap 5 | Responsive | Distinct from NEET/JEE
 */

.r1yr-page-wrap {
    --r1yr-accent: #0d9488;
    --r1yr-bg: #f0fdfa;
}

.r1yr-page-wrap .page-hero {
    background: linear-gradient(135deg, #134e4a 0%, #0f766e 50%, #14b8a6 100%);
    padding: 2.5rem 0 3rem;
    position: relative;
}
.r1yr-page-wrap .page-hero .container { position: relative; z-index: 1; }
.r1yr-page-wrap .page-hero h1 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.r1yr-page-wrap .page-hero h1 .hero-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.r1yr-page-wrap .content-section {
    background: var(--r1yr-bg);
    padding: 3rem 0;
}

/* Dashboard stats strip */
.r1yr-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
@media (min-width: 576px) {
    .r1yr-stats { grid-template-columns: repeat(5, 1fr); }
}
.r1yr-stat {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid rgba(13, 148, 136, 0.2);
    box-shadow: 0 2px 12px rgba(13, 148, 136, 0.06);
}
.r1yr-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--r1yr-accent);
    margin-bottom: 0.25rem;
}
.r1yr-stat-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.r1yr-page-wrap .section-heading { color: #134e4a; border-bottom-color: var(--r1yr-accent); }
.r1yr-page-wrap .section-subheading { color: var(--r1yr-accent); font-weight: 700; }
.r1yr-page-wrap .topper-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.12);
    border: 1px solid rgba(13, 148, 136, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}
.r1yr-page-wrap .topper-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(13, 148, 136, 0.18);
}
.r1yr-page-wrap .topper-card img { width: 100%; height: 220px; object-fit: contain; }
.r1yr-page-wrap .topper-label { padding: 1rem; background: #fff; }
.r1yr-page-wrap .tl-name { font-weight: 800; color: #134e4a; margin: 0 0 0.25rem; }
.r1yr-page-wrap .tl-clg { font-size: 0.9rem; color: #64748b; margin: 0; }
.r1yr-page-wrap .topper-info-btn {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(20, 184, 166, 0.08));
    color: #0f766e;
    border: 1px solid rgba(13, 148, 136, 0.25);
    padding: 0.65rem 1rem;
    margin: 0 1rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}
.r1yr-page-wrap .topper-info-note { display: block; font-size: 0.75rem; color: #64748b; margin-top: 0.25rem; }
.r1yr-page-wrap .photo-placeholder {
    border-radius: 16px;
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
    border: 2px dashed rgba(13, 148, 136, 0.4);
    color: #0f766e;
}

@media (max-width: 575.98px) {
    .r1yr-page-wrap .page-hero h1 { font-size: 1.4rem; }
}
