
/* Main Container */
.ricj-video-resource-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Header */
.video-header { text-align: center; margin-bottom: 50px; }
.video-header h1 { 
    color: #1D2088; 
    font-size: 2.4rem; 
    font-weight: 800; 
    margin-bottom: 15px; 
}
.video-header p { color: #555; font-size: 1.1rem; }

/* Grid System */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Card Styling */
.video-card {
    background: #ffffff;
    border-radius: 4px; /* Industrial Sharp Look */
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.video-card:hover {
    box-shadow: 0 12px 30px rgba(29, 32, 136, 0.15);
    transform: translateY(-5px);
}

/* Video Aspect Ratio 16:9 */
.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
}
.video-embed-wrapper iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}

/* Content Area */
.video-content { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; }
.video-content h3 { 
    color: #1D2088; 
    font-size: 1.3rem; 
    margin: 0 0 15px; 
}
.video-content p { 
    color: #666; 
    font-size: 0.95rem; 
    line-height: 1.6; 
    margin-bottom: 25px; 
    flex-grow: 1; 
}

/* Button with Brand Color #1D2088 */
.btn-ricj {
    display: inline-block;
    padding: 12px 20px;
    background-color: #1D2088;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}
.btn-ricj:hover { background-color: #151866; color: #fff; }

/* Mobile Optimization */
@media (max-width: 768px) {
    .video-header h1 { font-size: 1.8rem; }
    .video-grid { grid-template-columns: 1fr; }
}
