* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0d300d;
    color: #f8f8f8;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    line-height: 1.6;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.page-description {
    color: #b7dfbc;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}
.cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ===========================================
   CARD STYLES
   To add a new card, copy the .card div below
   and update: title, link, description, image
   =========================================== */
.card {
    display: flex;
    background: #386330;
    border-radius: 8px;
    border-left: 4px solid #00d0cb;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.card-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f8f8f8;
}
.card-title a {
    color: #00d0cb;
    text-decoration: none;
    transition: color 0.2s ease;
}
.card-title a:hover {
    color: #b7dfbc;
}
.card-description {
    color: #b7dfbc;
    font-size: 1rem;
    line-height: 1.6;
}
.card-credit {
    color: #7a9f82;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}
.card-image {
    height: 200px;
    min-height: 150px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card > img {
    height: 200px;
    flex-shrink: 0;
    object-fit: cover;
}
/* Placeholder for cards without images yet */
.card-image.placeholder {
    background: #03492d;
    color: #7a9f82;
    font-size: 0.875rem;
}
ul {
    margin-left: 2.5rem;
}
.note {
    margin-top: 1cm;
}
.home-link {
    margin: 2rem 0;
}
.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: inherit;
    border-radius: 4px;
    border: 1px solid #00d0cb;
    background: transparent;
    color: #00d0cb;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-home:hover {
    background: #00d0cb;
    color: #0d300d;
}

/* Responsive: stack on mobile */
@media (max-width: 600px) {
    .card {
        flex-direction: column-reverse;
    }
    .card-image {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
    .card > img {
        width: 100%;
        height: auto;
        max-height: 300px;
    }
}
