.aw-card {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.aw-card::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lg-gold-tint-55), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.aw-card:hover::before { opacity: 1; }

.aw-image-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.aw-image-wrap::after {
    content: "";
    position: absolute;
    inset: auto 10% -10px 10%;
    height: 24px;
    background: radial-gradient(50% 100% at 50% 0%, rgba(212, 175, 55, 0.18), transparent 70%);
    filter: blur(8px);
    z-index: 0;
}
.aw-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 240px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
    transition: transform 0.4s ease;
}
.aw-card:hover .aw-image { transform: scale(1.04); }

.aw-divider {
    width: 32px;
    height: 1px;
    background: var(--lg-gold-tint-45);
    margin: 0.75rem auto;
    border: 0;
}

.aw-name {
    color: #ffffff;
    font-family: var(--lg-font-serif);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.005em;
    line-height: 1.35;
    margin: 0;
}
.aw-type {
    color: var(--lg-gold);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 575px) {
    .aw-image-wrap { height: 200px; }
    .aw-image { max-height: 200px; }
}
