/**
 * RIYL Source Title Component Styles
 * Shared styling for source title display in RIYL modals
 */

/* Source title component container */
.riyl-source-title-component {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 12px;
}

/* Poster image */
.riyl-source-poster {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    background: #374151;
    flex-shrink: 0;
}

/* Source details container */
.riyl-source-details h6 {
    font-weight: 600;
    color: #212529;
}

/* Scores container */
.riyl-source-scores {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .riyl-source-poster {
        width: 60px;
        height: 90px;
    }

    .riyl-source-title-component {
        padding: 10px;
    }
}

/* ========================================
   DARK MODE OVERRIDES
   ======================================== */

[data-bs-theme="dark"] .riyl-source-title-component {
    background: var(--mv-bg-surface);
}
[data-bs-theme="dark"] .riyl-source-details h6 {
    color: var(--mv-text-primary);
}
