.sv-teams-hero-widget {
    padding: var(--sv-content-padding);
    position: relative;
    z-index: 1;
}

.sv-teams-hero-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: #f3f7fa;
  z-index: -1;
}

.sv-teams-hero-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.sv-teams-hero-title {
    flex: 0 0 40%;
    max-width: 40%;
    margin: 0;
    color: var(--sv-primary);
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    text-transform: uppercase;
}

.sv-teams-hero-subtitle {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0;
    color: var(--sv-primary);
    font-size: var(--sv-font-size-md);
    font-weight: 300;
    line-height: 1.2;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .sv-teams-hero-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .sv-teams-hero-title,
    .sv-teams-hero-subtitle {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .sv-teams-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .sv-teams-hero-title {
        font-size: 2rem;
    }
    
    .sv-teams-hero-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 479px) {
    .sv-teams-hero-title {
        font-size: 1.75rem;
    }
    
    .sv-teams-hero-subtitle {
        font-size: 1rem;
    }
}
