/* style/live.css */

/* Base styles for the live page content */
.page-live {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: #f8f8f8; /* Slightly off-white background for the page content */
    padding-top: var(--header-offset, 120px); /* Ensures content clears the fixed header */
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

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

.page-live__section-title {
    font-size: 2.5em;
    color: #B80000; /* Main brand color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-live__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Accent color for underline */
    border-radius: 2px;
}