:root {
    --tb-primary: #003049; 
    --tb-secondary: #d62828; 
    --tb-white: #ffffff;
    --tb-font-heading: 'Montserrat', sans-serif;
    --tb-font-body: 'Inter', sans-serif;
    --tb-border-radius: 8px;
    --tb-transition: all 0.3s ease;
}

.toronto-hero {
    width: 100%;
    font-family: var(--tb-font-body);
}

.toronto-hero-content {
    position: relative;
    border-radius: var(--tb-border-radius);
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: flex-end;
}

.toronto-hero-text {
    padding: 3rem;
    color: var(--tb-white);
    max-width: 800px;
}

.toronto-hero .category-badge {
    display: inline-block;
    background-color: var(--tb-secondary);
    color: var(--tb-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.toronto-hero-text h1 {
    font-family: var(--tb-font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--tb-white);
}

.toronto-hero-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: var(--tb-white);
}

.toronto-hero .read-more-link {
    color: var(--tb-white);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--tb-transition);
}

.toronto-hero .read-more-link:hover {
    color: var(--tb-secondary);
}

@media (max-width: 992px) {
    .toronto-hero-text h1 {
        font-size: 2rem;
    }
    .toronto-hero-content {
        height: auto;
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .toronto-hero-content {
        height: auto;
        min-height: 420px;
    }
    .toronto-hero-text {
        padding: 2rem 1.5rem;
        padding-top: 4rem; /* Ensures a nice gap at the top of the image */
    }
    .toronto-hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    .toronto-hero-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}