* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #F6F7FB;
    color: #111;
}

.container {
    max-width: 68.75rem;
    margin: 0 auto;
    padding: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.card {
    background: white;
    border: 1px solid #e6e6ef;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 300ms ease, filter 300ms ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.card img {
    width: 100%;
    height: 500px; 
    object-fit: cover;
    object-position: center top;
    display: block;
}

.card .content {
    padding: 1rem;
}

.card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #555;
}

@media (min-width: 768px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.container:hover .card:not(:hover) {
    filter: blur(1.5px);
}

.container .card:hover {
    transform: scale(1.06);
}