.budi-color-style-guide__wrapper {
    margin: 20px 0;
}

.budi-color-style-guide__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 38px;
    padding: 20px 0;
}

.budi-color-style-guide__item {
    background: #fff;
    overflow: hidden;
    color: var(--color-main);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.budi-color-style-guide__color-name {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budi-color-style-guide__color-swatch {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}

.budi-color-style-guide__hex-value {
    font-size: 16px;
    color: inherit;
    margin-bottom: 18px;
}

.budi-color-style-guide__color-codes {
    margin-bottom: 18px;
}

.budi-color-style-guide__additional-codes {
    margin-bottom: 15px;
}

.budi-color-style-guide__code {
    font-size: 14px;
    color: inherit;
    margin-bottom: 5px;
    line-height: 1.4;
}

.budi-color-style-guide__category {
    font-size: 11px;
    color: #5A7184;
    padding-top: 10px;
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .budi-color-style-guide__container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .budi-color-style-guide__color-swatch {
        height: 100px;
    }
    
    .budi-color-style-guide__code {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .budi-color-style-guide__container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .budi-color-style-guide__item {
        margin-bottom: 10px;
    }
}
