.SupportGroups {
    background-color: #1a4447;
    padding: 20px;
    border-radius: 8px;
    color: white;
    margin: 20px 0;
    box-sizing: border-box;
    overflow: hidden;
}

.SupportGroups ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.SupportGroups li {
    display: flex;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid white;
    width: 100%;
    flex-wrap: wrap; /* Allows items to wrap if needed */
}

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

.SupportGroups li .day {
    flex: 0 0 12ch; /* Fixed width for .day, adjust if needed */
    font-weight: bold;
    margin-right: 1ch; /* Space between day and info */
    font-size: clamp(0.75em, 1.2vw + 0.4em, 1.1em); /* Smooth scaling */
    white-space: nowrap; /* Keeps day text on one line */
}

.SupportGroups li .info {
    flex: 1; /* Allows info to take the remaining space */
    font-size: clamp(0.85em, 1.2vw + 0.3em, 1.2em); /* Smooth scaling */
    line-height: 1.4; /* Adjust line height for readability */
    word-wrap: break-word; /* Break long words if necessary */
    overflow-wrap: break-word; /* Ensures long words wrap */
    word-break: break-word; /* Prevent hyphens and ensures words break correctly */
    hyphens: none; /* Prevents hyphenation */
    white-space: normal; /* Allows text to wrap normally */
    margin-left: 1ch; /* Consistent margin between day and info */
}

.SupportGroups hr {
    border: 0;
    border-top: 1px solid white;
    margin: 10px 0;
}

.SupportGroups h2 {
    font-size: clamp(1.0em, 2.0vw + 0.4em, 1.4em); /* Smooth scaling for headings */
    font-weight: bold;
    color: white;
    margin: 0 0 10px 0;
}

@media (max-width: 600px) {
    .SupportGroups li .day,
    .SupportGroups li .info {
        font-size: clamp(0.75em, 1.2vw + 0.3em, 1.1em); /* Consistent smaller text on small screens */
    }

    .SupportGroups h2 {
        font-size: clamp(0.9em, 2.0vw + 0.2em, 1.2em); /* Consistent smaller heading size on small screens */
    }
}
