.style-guide-colors {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(auto-fill, minmax(64px,1fr));
}

.style-guide-color {
    font-size: var(--wp--preset--font-size--tiny);
    text-align: center;
}

.style-guide-color .swatch {
    border: 1px solid var(--wp--custom--color--neutral-300);
    border-radius: 50%;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    margin-bottom: 6px;
}

@media only screen and (min-width: 768px) {
	.style-guide-palette {
		display: grid;
		grid-template-columns: repeat( 3, 1fr );
	}
}

.style-guide-palette .swatch {
    aspect-ratio: 1;
    padding: 16px;
    display: flex;
    align-items: flex-end;
}

.style-guide-palette .swatch__name {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    text-transform: lowercase;
    margin: 0;
}

.style-guide-palette .swatch__details {
    font-size: 16px;
    margin: 0;
}
