    .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card base */
.al-card {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease;
    background: #fff;
}

.al-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0,0,0,.1);
}

/* Tag */
.al-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #c9a24d;
    margin-bottom: 10px;
}

/* Título */
.al-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    margin-bottom: 10px;
    color: #1f2937;
}

/* Texto */
.al-text {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

/* Call to action */
.al-action {
    margin-top: 15px;
    font-weight: 600;
    color: #c0392b;
}

/* Imagem */
.al-image {
    overflow: hidden;
}

.al-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

/* Zoom suave no hover */
.al-card:hover .al-image img {
    transform: scale(1.08);
}