.brand-entry {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.25rem;
padding: 1rem 0.75rem;
background: linear-gradient(to bottom, #ffffff, #f8fafc);
border: 1px solid #e2e8f0;
border-radius: 0.75rem;
font-weight: 600;
font-size: 0.9375rem;
color: #1e40af;
text-align: center;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
transition: all 0.2s ease;
cursor: pointer;
}
.brand-entry:hover {
background: linear-gradient(to bottom, #ffffff, #eff6ff);
border-color: #93c5fd;
box-shadow: 0 4px 12px -2px rgba(59, 130, 246, 0.15), 0 2px 6px -2px rgba(59, 130, 246, 0.1);
transform: translateY(-2px);
}
.brand-entry:active {
transform: translateY(0);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}
.brand-entry-link {
position: absolute;
inset: 0;
z-index: 1;
}
.brand-entry-count {
display: block;
font-weight: 400;
font-size: 0.75rem;
color: #64748b;
margin-top: 0.125rem;
}
/* Dark mode support */
.skin-citizen-dark .brand-entry,
.citizen-dark .brand-entry {
background: linear-gradient(to bottom, #1e293b, #0f172a);
border-color: #334155;
color: #60a5fa;
}
.skin-citizen-dark .brand-entry:hover,
.citizen-dark .brand-entry:hover {
background: linear-gradient(to bottom, #1e3a5f, #1e293b);
border-color: #3b82f6;
box-shadow: 0 4px 12px -2px rgba(59, 130, 246, 0.25), 0 2px 6px -2px rgba(59, 130, 246, 0.15);
}
.skin-citizen-dark .brand-entry-count,
.citizen-dark .brand-entry-count {
color: #94a3b8;
}