.site-card {
    transition: transform .1s ease, box-shadow .2s ease;
    border-radius: 14px;
}

.site-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.team-card {
    transition: transform .1s ease, box-shadow .2s ease;
    border-radius: 14px;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.nav-icon-fixed {
    height: 20px;
    width: 24px;
    min-width: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.flex-1 {
    flex: 1 1 auto;
}

.ion-icon {
    cursor: pointer;
    padding: 4px;
}

.ion-icon:hover {
    background-color: #ccc;
    border-radius: 8px;
}

.dl-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dee2e6;
}

.dl-header__sub {
    font-size: .8rem;
    color: #6c757d;
    margin: 2px 0 0;
}

/* Site label — matches .da-site-label */
.dl-site-label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #6c757d;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dl-site-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dee2e6;
}

/* Cards — matches .da-card */
.dl-card {
    display: block;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .18s, border-color .18s;
    position: relative;
    overflow: hidden;
}

.dl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    opacity: 0;
    transition: opacity .18s;
}

.dl-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    border-color: #c0cfe8;
    color: inherit;
    text-decoration: none;
}

.dl-card:hover::before {
    opacity: 1;
}

.dl-card__name {
    font-size: .975rem;
    font-weight: 700;
    color: #212529;
    margin: 0 0 8px;
}

.dl-card__desc {
    font-size: .825rem;
    color: #6c757d;
    margin: 0 0 16px;
    line-height: 1.5;
    min-height: 2.4em;
}

.dl-card__arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .8rem;
    font-weight: 600;
    color: #0d6efd;
}

/* Empty state */
.dl-empty {
    text-align: center;
    padding: 50px 20px;
    color: #6c757d;
    border: 1px dashed #dee2e6;
    border-radius: 10px;
    background: #f8f9fa;
}

.dl-empty__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.dl-empty__title {
    color: #495057;
    font-weight: 600;
    margin-bottom: 6px;
}