/* ===========================
   Result Item (Site Card) Styles
   =========================== */

/* Sites list – remove default list styles, single column stacked layout */
#sites-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Site cards: full width, rounded borders, visible shadow */
.site-card {
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

/* Tags wrapper: empuja la sección de tags al fondo de la tarjeta */
.site-card__tags-wrapper {
    margin-top: auto;
}

/* Site name: bold, 1.25x base font size */
.site-name {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a237e;
    text-decoration: none;
}

.site-name:hover,
.site-name:focus {
    text-decoration: underline;
}

/* Site description: base font size */
.site-description {
    margin: 0.5rem 0 0;
    font-size: 1rem;
    color: #333333;
}

/* No results message */
.no-results-message {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 1rem;
}

/* ===========================
   Tag Pills in Site Card
   =========================== */

/* Separator between description and tags */
.site-card__separator {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0.75rem 0;
}

/* Tags container: flex wrap with gap */
.site-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* Individual tag pill */
.site-card__tag {
    display: inline-block;
    background-color: #e8eaf6;
    color: #3949ab;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 150ms ease, color 150ms ease;
}

/* Tag pill – selected state (contrast ratio #ffffff on #1a237e ≈ 12.6:1, WCAG AA compliant) */
.site-card__tag--selected {
    background-color: #1a237e;
    color: #ffffff;
}

/* ===========================
   Desktop Breakpoint – Result Items
   (>= 768px)
   =========================== */

@media (min-width: 768px) {
    #sites-list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 16px;
    }
}
