.art-card {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    max-width: 480px;
    margin: 20px auto;
    font-family: 'Georgia', serif; /* Serif for that "Future" look */
}

.art-top {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eee; /* Fallback */
}

.art-bottom {
    padding: 45px 35px;
    text-align: center;
    position: relative;
    color: #fff;
}

.art-title {
    margin: 0;
    line-height: 1.2;
    font-weight: 400;
}

/* Fading Line Style */
.art-fading-line {
    height: 2px;
    width: 70%;
    margin: 20px auto;
    opacity: 0.8;
}

.art-desc {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Helvetica', 'Arial', sans-serif;
}

.art-btn-wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.art-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    font-family: sans-serif;
}

.art-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

.art-btn .dashicons {
    font-size: 16px;
    line-height: 1;
}

/* Leaf decoration */
.art-bottom::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 120px;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="white" opacity="0.04"><path d="M17,8C8,10 5,16 5,22C5,22 12,20 17,8Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}