.detective-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.detective-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detective-banner h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-size: 2.5rem;
}

.detective-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.detective-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.detective-card:hover {
    transform: translateY(-5px);
}

.detective-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.detective-info {
    padding: 1.5rem;
}

.detective-info h2 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
}

.detective-info .author {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.detective-info .description {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.features span {
    background: #f0f2f5;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #2c3e50;
} 