* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 40px;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #003b44;
}

h2 {
    margin-bottom: 24px;
    font-size: 32px;
    font-weight: 700;
}

.events {
    max-width: 1200px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
}

.card {
    background: #e9f4f5;
    display: flex;
    border: 1px solid #b7d3d6;
}

.card img {
    width: 50%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location {
    font-size: 14px;
    color: #2b6d75;
    margin-bottom: 6px;
}

.title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #134d55;
}

.btn {
    align-self: flex-start;
    background: #0b6a73;
    color: #fff;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 14px;
    text-decoration: none;
}

/* Untere Karten */
.bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.small-card {
    background: #e9f4f5;
    border: 1px solid #b7d3d6;
    display: flex;
}

.small-card img {
    width: 45%;
    object-fit: cover;
}

.small-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.small-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
