.divisions {
    /* main component styles */
    width: 100%;
    min-height: 100vh; /* height must go to the bottom, even if there is scrollbar */
    background: linear-gradient(0deg, rgba(223, 244, 255, 0.2) 0%, rgba(223, 244, 255, 0.2) 100%),
        #fff;
    box-shadow: 4px 0 4px 0 #dff4ff, 0 4px 4px 0 #dff4ff;
    padding: 16px;
    padding-top: 32px;
}

.divisions .divisions-header {
    width: 100%;
    height: 100px;
    background-image: url("https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gojigames/i/GojiGames2025_LM.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.divisions .title {
    font-family: "Metropolis Semi Bold";
    font-size: 28px;
    letter-spacing: 0.28px;
    color: #4b4a4a;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.divisions .divisions-list {
    /* list container styles */
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-top: 10%;
}

.divisions .division-item {
    /* individual division item styles */
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.divisions .division-item:hover {
    background: #e3f2fd;
    border-color: #2196f3;
}

.dark .divisions {
    background: #1f2120;
    box-shadow: 4px 0 4px 0 rgba(196, 196, 196, 0.2), 0 4px 4px 0 rgba(196, 196, 196, 0.2);
}

.dark .divisions .title {
    color: #fff;
}

.dark .divisions .divisions-header {
    background-image: url("https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gojigames/i/GojiGames2025_DM.svg");
}

@media (max-width: 1024px) {
    .divisions .divisions-header {
        height: 60px;
    }
    .divisions .title {
        font-size: 24px;
        line-height: 1.3;
    }
}

@media (max-width: 767px) {
    .divisions {
        padding-top: 16px;
        min-height: auto;
        background: none;
        box-shadow: none;
    }
    .divisions .title,
    .divisions .divisions-list {
        display: none;
    }
}