.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.card {
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 98, 0.4);
    padding: 1.35rem 1.3rem 1.4rem;
    background: radial-gradient(circle at top, rgba(201, 169, 98, 0.14), rgba(8, 8, 8, 0.9));
}

.card-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid rgba(201, 169, 98, 0.3);
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.card-body {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #e5e5e5;
    margin-bottom: 1rem;
}

.card-body:last-child {
    margin-bottom: 0;
}
