/* Curator Badge Styling */

.curator-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-weight: 900;
    font-size: 0.65rem;
    line-height: 1;
    position: relative;
    filter:
        drop-shadow(0 0 1.5px #000)
        drop-shadow(0 0 1.5px #000)
        drop-shadow(0 2px 6px rgba(0,0,0,0.25));
    transition: transform 0.2s ease, filter 0.2s ease;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    flex-shrink: 0;
}

.curator-badge:hover {
    transform: scale(1.15) rotate(15deg);
    filter:
        drop-shadow(0 0 2px #000)
        drop-shadow(0 0 2px #000)
        drop-shadow(0 4px 10px rgba(0,0,0,0.35));
}

.curator-badge .curator-initial {
    font-weight: 900;
    letter-spacing: 0.04em;
    font-size: 0.65rem;
    display: block;
    text-align: center;
}

/* Radar card positioning */
.home-v2-radar-card {
    position: relative;
}

.home-v2-radar-card-body {
    position: relative;
}

.home-v2-radar-card-body-curator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
}

/* Radar archive and single card positioning - bottom right of content */
.radar-entry-content {
    position: relative;
}

.radar-entry-content-curator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
}

/* Radar entry media - curator badge in bottom left corner of the content area */
.radar-entry-media {
    position: relative;
}

.radar-entry-curator {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 10;
}

/* Single radar page */
.radar-curator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    background-color: #f5f5f5;
    font-size: 14px;
}

.radar-curator-badge .curator-badge {
    width: 28px;
    height: 28px;
    font-size: 12px;
}


/* Curators legend section */
.curators-legend {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}

.curators-legend h3 {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.curators-legend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.curators-legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.curators-legend-item .curator-badge {
    flex-shrink: 0;
}

.curators-legend-item .curator-name {
    font-size: 14px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .curator-badge {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .curator-badge .curator-initial {
        font-size: 15px;
    }

    .home-v2-radar-card-curator {
        top: 8px;
        right: 8px;
    }

    .curators-legend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .curator-badge {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .curator-badge .curator-initial {
        font-size: 13px;
    }

    .curators-legend-grid {
        grid-template-columns: 1fr;
    }
}
