/*
Theme Name: Roblox Lawsuit
Theme URI: https://robloxlawsuit.ca
Author: Neinstein LLP
Author URI: https://neinstein.com
Description: Custom theme for Roblox Lawsuit Blog based on provided mockup.
Version: 1.1
License: Proprietary
*/

/* ... (lines 11-120 skipped) ... */

.sidebar-form label,
.sidebar-form .form-check-label {
    color: #212529 !important;
    /* Force dark gray */
    font-weight: 600;
    opacity: 1 !important;
    /* Ensure opacity isn't 0 */
}

/* Custom CSS overrides can go here, though most styles are loaded externally. */

/* Blog Index Grid */
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.blog-col {
    width: 100%;
    padding: 15px;
}

@media (min-width: 768px) {
    .blog-col {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .blog-col {
        width: 33.333%;
    }
}

.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #0056b3;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-btn {
    align-self: flex-start;
}

/* Sidebar & Single Post */
.single-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.sidebar-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 100;
}

.sidebar-cta {
    background: #f8f9fa;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.sidebar-cta h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.sidebar-form .form-control {
    margin-bottom: 15px;
}

.sidebar-form label,
.sidebar-form .form-check-label {
    color: #212529 !important;
    /* Force dark gray */
    display: inline-block;
    /* Ensure layout is correct */
    font-weight: 600;
}

/* Single Post Title Typography */
article h1 {
    line-height: 1.4 !important;
    margin-bottom: 0.5rem;
}

.btn-cta {
    width: 100%;
    padding: 12px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #dc3545;
    /* Bootstrap danger red, adjusting to potential theme color */
    color: white;
    border: none;
}

.btn-cta:hover {
    background-color: #c82333;
    color: white;
}