body {
    font-family: Arial, sans-serif;
    max-width: 50%;
    margin: 40px auto;
    padding: 0 20px;
    line-height: 1.6;
    color: #222;
}

header {
    margin-bottom: 2rem;
}

h1 {
    margin-bottom: 0.2rem;
    font-size: 2.2rem;
}

.tagline {
    color: #666;
    margin-top: 0;
}

.socials {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.socials img {
    width: 28px;
    height: 28px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.socials img:hover {
    opacity: 1;
}

h2 {
    margin-top: 2rem;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 1rem 0 2rem;
}

.card {
    display: block;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 10px 10px 6px rgba(0,0,0,0.1);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}
