.fashion-guide {
    border: 1px solid rgb(229, 229, 229);
    border-radius: 0.5rem;
    background: rgb(250, 250, 250);
    padding: 0.875rem;
}

.dark .fashion-guide {
    border-color: rgb(64, 64, 64);
    background: rgb(23, 23, 23);
}

.fashion-guide-title {
    margin-bottom: 0.35rem;
    color: rgb(23, 23, 23);
    font-size: 0.875rem;
    font-weight: 700;
}

.dark .fashion-guide-title {
    color: rgb(255, 255, 255);
}

.fashion-guide-text,
.fashion-guide-note {
    color: rgb(82, 82, 82);
    font-size: 0.8125rem;
    line-height: 1.35rem;
}

.dark .fashion-guide-text,
.dark .fashion-guide-note {
    color: rgb(212, 212, 212);
}

.fashion-guide-note {
    margin-top: 0.5rem;
    font-weight: 600;
}

.palette-strip {
    display: grid;
    min-height: 5rem;
    overflow: hidden;
    border-radius: 0.25rem;
    grid-template-columns: repeat(var(--palette-count, 3), minmax(0, 1fr));
}

.palette-swatch {
    min-width: 0;
}

.palette-swatch-inner {
    position: relative;
    display: flex;
    height: 100%;
    min-height: 5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.palette-swatch-inner:hover {
    border-color: rgba(0, 0, 0, 0.35);
}

.palette-swatch-info {
    text-align: center;
}

.palette-hex,
.palette-role {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
}

.palette-hex {
    font-size: 0.75rem;
    font-weight: 700;
}

.palette-role {
    margin-top: 0.15rem;
    font-size: 0.6875rem;
    font-weight: 700;
}

.palette-pick {
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
}

.palette-pick:not(.hidden) {
    display: flex;
}

@media (max-width: 640px) {
    .brand-name {
        font-size: 1rem;
    }

    .palette-strip {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .palette-swatch-inner {
        min-height: 3.75rem;
    }
}
