/* ============================================
   OAKMONT GLOBAL ASSETS - MAIN STYLES
   Replicating corcapa.com design
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #5a8a9c;
    --primary-dark: #4a7a8c;
    --secondary-color: #d4a574;
    --accent-color: #c9956b;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --bg-light: #f5f5f5;
    --bg-dark: #2c3e50;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --footer-bg: #3a4f5f;
    --footer-dark: #2c3e50;
    --font-main: 'Open Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-small {
    padding: 8px 16px;
    font-size: 11px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 14px;
}

.btn-outline-small {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 16px;
    font-size: 12px;
}

.btn-outline-small:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary-small {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 12px;
}

.btn-primary-small:hover {
    background-color: var(--primary-dark);
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
    background-color: var(--primary-color);
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left .phone-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.top-bar-left .phone-link i {
    margin-right: 8px;
}

.top-bar-right {
    display: flex;
    gap: 10px;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item > a:hover,
.nav-item.active > a {
    color: var(--primary-color);
}

.nav-item i {
    font-size: 10px;
}

/* Dropdown */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   SUB HEADER
   ============================================ */

.sub-header {
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 50%, #c0c0c0 100%);
    padding: 15px 0;
}

.sub-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-header-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.sub-header-item i {
    font-size: 28px;
    color: var(--primary-color);
}

.sub-header-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.sub-header-item span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.sub-header-phone {
    background-color: var(--primary-color);
    padding: 15px 40px;
    margin: -15px 0;
}

.sub-header-phone i,
.sub-header-phone strong,
.sub-header-phone span {
    color: var(--white);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 550px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 600px;
    color: var(--white);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ============================================
   THREE CARDS SECTION
   ============================================ */

.three-cards {
    padding: 50px 0;
    background-color: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
}

.card-content h3 a {
    color: var(--primary-color);
}

.card-content h3 a:hover {
    color: var(--primary-dark);
}

.card-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   EBOOK SECTION
   ============================================ */

.ebook-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.ebook-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.ebook-text {
    flex: 1;
}

.ebook-text h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.ebook-text p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.ebook-image {
    flex: 0 0 300px;
}

.ebook-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: 60px 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 14px;
    color: var(--text-light);
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 5px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.process-step {
    max-width: 280px;
    color: var(--white);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.process-step p {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.9;
}

/* ============================================
   INVESTMENT SERVICES
   ============================================ */

.investment-services {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.investment-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.investment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.investment-image {
    height: 160px;
    overflow: hidden;
}

.investment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.investment-card:hover .investment-image img {
    transform: scale(1.05);
}

.investment-content {
    padding: 20px;
    text-align: center;
}

.investment-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials-section {
    padding: 60px 0;
    background-color: var(--white);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 5px;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.testimonials-nav {
    text-align: center;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.blog-image {
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--text-dark);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.read-more {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--white);
    margin-bottom: 5px;
}

.cta-subtitle {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-text {
    font-size: 14px;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
}

.process-steps-small {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.process-step-small {
    max-width: 220px;
    color: var(--white);
}

.step-number-small {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step-small h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step-small p {
    font-size: 12px;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--footer-bg);
    color: var(--white);
}

.footer-main {
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-about p {
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-about a {
    color: var(--secondary-color);
}

.footer-contact {
    margin: 20px 0;
}

.footer-contact p {
    font-size: 13px;
    line-height: 1.8;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 13px;
    opacity: 0.9;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    background-color: var(--footer-dark);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--secondary-color);
}

.footer-disclaimer {
    font-size: 11px !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .cards-grid,
    .services-grid,
    .investment-grid,
    .blog-grid,
    .testimonials-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sub-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .sub-header-phone {
        margin: 0;
        padding: 15px 30px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps-small {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cards-grid,
    .services-grid,
    .investment-grid,
    .blog-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .ebook-content {
        flex-direction: column;
    }
    
    .ebook-image {
        flex: none;
        max-width: 250px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   VIDEOS SECTION
   ============================================ */

.videos-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.video-card {
    background-color: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.video-play i {
    font-size: 28px;
    color: var(--primary-color);
    margin-left: 3px;
}

.video-thumbnail:hover .video-play {
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail:hover .video-play i {
    color: var(--white);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.video-content {
    padding: 20px;
}

.video-content h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.video-content h3 a {
    color: var(--text-dark);
}

.video-content h3 a:hover {
    color: var(--primary-color);
}

.video-content p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.videos-nav {
    text-align: center;
}

/* Video Page Styles */
.video-featured {
    padding: 60px 0;
    background-color: var(--white);
}

.video-main {
    margin-bottom: 40px;
}

.video-player-large {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-dark);
}

.video-player-large iframe,
.video-player-large img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
}

.video-player-overlay i {
    font-size: 80px;
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.video-player-overlay:hover i {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.video-info {
    padding: 25px 0;
}

.video-info h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.video-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 15px;
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-list-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.video-list-item:hover,
.video-list-item.active {
    background-color: var(--white);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.video-list-thumb {
    position: relative;
    width: 120px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-list-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-list-thumb .duration {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background-color: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 2px 5px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 600;
}

.video-list-info h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
    line-height: 1.3;
}

.video-list-info p {
    font-size: 12px;
    color: var(--text-muted);
}
