.infobox {
    width: 300px;
    background: var(--background);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.infobox-title {
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
}

.infobox-image {
    padding: 1rem;
    background: var(--background-accent);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.infobox-placeholder {
    background: var(--primary-color);
    color: white;
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
}

.infobox-table {
    width: 100%;
    border-collapse: collapse;
}

.infobox-table th,
.infobox-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    vertical-align: top;
}

.infobox-table th {
    background: var(--background-secondary);
    font-weight: 600;
    color: var(--text-primary);
    width: 40%;
}

.infobox-table td {
    color: var(--text-secondary);
}

.infobox-table tr:last-child th,
.infobox-table tr:last-child td {
    border-bottom: none;
}

.infobox-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.infobox-list li {
    padding: 0.25rem 0;
    margin: 0;
    color: var(--text-secondary);
}

.infobox-list li:before {
    content: "•";
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-weight: bold;
}

@media (max-width: 968px) {
    .infobox {
        width: 100%;
        max-width: 400px;
    }
    
    .infobox-table th {
        width: 35%;
    }
}

@media (max-width: 480px) {
    .infobox-table th,
    .infobox-table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .infobox-title {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .infobox-image {
        padding: 0.75rem;
    }
    
    .infobox-placeholder {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }
}
