.wa-home-fleet-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .wa-home-fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.wa-home-fleet-card-link {
    display: flex;
    flex-direction: column;
    text-align: left;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}
.wa-home-fleet-card-link:hover,
.wa-home-fleet-card-link:focus-visible {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(201, 162, 39, 0.35);
    transform: translateY(-2px);
}
.wa-home-fleet-card-link:focus-visible {
    outline: 2px solid var(--wa-gold, #c9a227);
    outline-offset: 2px;
}
.wa-home-fleet-card .badb-class-card-media {
    aspect-ratio: 16 / 10;
}
.wa-home-fleet-spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.wa-home-fleet-ic {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
}
.wa-home-fleet-card .badb-class-card-specs {
    display: flex;
    gap: 16px;
    align-items: center;
}
.wa-home-fleet-card .badb-class-card-cta.wa-home-fleet-cta {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    text-decoration: none;
    text-align: center;
    border: 2px solid var(--wa-navy, #1a1a2e) !important;
    color: var(--wa-navy, #1a1a2e) !important;
    background: #fff;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    transition: border-color 0.15s, background 0.15s;
    box-sizing: border-box;
}
.wa-home-fleet-card-link:hover .badb-class-card-cta.wa-home-fleet-cta,
.wa-home-fleet-card-link:focus-visible .badb-class-card-cta.wa-home-fleet-cta {
    border-color: var(--wa-gold, #c9a227) !important;
    background: rgba(201, 162, 39, 0.1);
}
