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

body {
    font-family: system-ui, sans-serif;
    background-color: #f5f5f5;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.page {
    width: 100%;
    max-width: 860px;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    min-height: 600px;
}

.header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 14px 16px;
}

.card-copy {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.card-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #1a56db;
    border: 1px solid #1a56db;
    border-radius: 6px;
    padding: 4px 12px;
    text-decoration: none;
}

.card-link:hover {
    background: #1a56db;
    color: white;
}
