.leaks-container {
    width: 100%;
    padding: 40px 0;
}

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

.leak-card {
    display: flex;
    flex-direction: column;
    background: #1c1c1c;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.leak-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.leak-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.leak-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.leak-content {
    padding: 16px;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leak-content h2 {
    margin: 0;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 600px) {
    .leak-content h2 {
        font-size: 18px;
    }
}