.card {
    background: linear-gradient(135deg, rgba(200, 213, 185, 0.08) 0%, rgba(143, 192, 169, 0.05) 100%);
    border: 2px solid rgba(200, 213, 185, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    cursor:default;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(200, 213, 185, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    border-color: var(--green);
    background: linear-gradient(135deg, rgba(200, 213, 185, 0.1) 0%, rgba(143, 192, 169, 0.05) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20 px 40px rgba(200, 213, 185, 0.2), 0 0 20px rgba(200, 213, 185, 0.1);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--ashgrey);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.card-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.card-links img {
    display: block;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.card-links li {
    list-style: none;
}

.card-links a {
    color: var(--green);
    text-decoration: none;
    padding: 0.6rem 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
    z-index: 1;
}

.card-links a::before {
    content: '✦';
    position: absolute;
    left: 0;
    opacity: 0.5;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.no-card-links a::before {
    content: none !important;
    margin: 0;
    padding: 0;
}

.card-links a:hover {
    color: var(--greenmuted);
    padding-left: 2rem;
}

.card-links a:hover::before {
    opacity: 1;
    color: var(--greenmuted);
}
