/* ══════════════════════════════════════════════════════════════
   READING PATHS PAGE
   ══════════════════════════════════════════════════════════════ */

.rp-main { padding: 0 30px; }

.rp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.rp-tile {
    background: rgba(15,20,25,0.6);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}
.rp-tile:hover {
    border-color: rgba(99,102,241,0.5);
    box-shadow: 0 8px 24px rgba(99,102,241,0.15);
    transform: translateY(-2px);
    text-decoration: none;
}

.rp-tile-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 10px;
}

.rp-tile-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rp-tile-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.rp-tile-count {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.rp-tile-progress {
    font-size: 11px;
    font-weight: 700;
    color: #6366f1;
}

/* Progress bar */
.rp-progress-bar {
    height: 3px;
    background: rgba(99,102,241,0.15);
    border-radius: 2px;
    overflow: hidden;
}
.rp-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
    transition: width 0.4s ease;
}

/* Mobile */
@media ( max-width: 768px ) {
    .rp-main { padding: 0 !important; }
    .rp-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
    .rp-tile { padding: 16px !important; }
    .rp-tile-title { font-size: 14px !important; }
    .rp-tile-desc { -webkit-line-clamp: 3 !important; }
}
