﻿.recon-category {
    margin-bottom: 2rem;
}

.recon-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background-color: rgba(20, 24, 30, 0.55);
    border: 1px solid var(--color-primary-blue);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(79, 148, 212, 0.3);
    backdrop-filter: blur(6px);
    transition: box-shadow 0.3s ease;
}

    .recon-card:hover {
        box-shadow: 0 0 30px rgba(79, 148, 212, 0.5);
    }

.recon-thumbnail-wrapper {
    position: relative;
    width: 200px;
    height: 132px;
    flex-shrink: 0;
    margin-right: 1rem;
}

.recon-thumbnail {
    width: 200px;
    height: 132px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.recon-thumbnail-label {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--color-accent);    
    font-size: 1rem;
    padding: 2px 6px;
    border-radius: 3px;
    z-index: 1;
    pointer-events: none;
    max-width:186px;
}

.recon-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    font-family: var(--font-main);
    color: white;
    min-width: 0;
}

    .recon-content h3 {
        font-size: 1.25rem;
        margin: 0 0 0.25rem;
    }

    .recon-content p {
        margin: 0.25rem 0;
        line-height: 1.4;
        color: #ccc;
        max-height: unset;
        overflow: visible;
        padding: 0;
    }

.recon-summary {
    max-height: 550px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

    .recon-summary::-webkit-scrollbar {
        width: 6px;
    }

    .recon-summary::-webkit-scrollbar-track {
        background: transparent;
    }

    .recon-summary::-webkit-scrollbar-thumb {
        background-color: rgba(200, 200, 200, 0.3);
        border-radius: 3px;
    }

.recon-content a {
    color: #0040aa;
    text-decoration: none;
}

    .recon-content a:hover {
        text-decoration: underline;
    }

.recon-meta {
    margin-top: auto;
    font-size: 0.75rem;
    color: #aaa;
    display: flex;
    gap: 0.25rem;
}

.recon-loading {
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
    color: #90c4ff;
    animation: fadeOut 0.8s ease-in-out forwards;
    animation-delay: 2.5s;
}


.recon-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 6px solid #00ffff;
    border-top: 6px solid #222;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}