.sys-card-icon-area {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem .5rem 0 0;
    background: rgba(255, 0, 0, 0.05);
    border-bottom: 1px solid #e8ecf0;
}
.sys-card-icon-area img {
    height: 115px;
    width: 115px;
    object-fit: contain;
    border-radius: 50%;
    /* box-shadow: 0 2px 8px rgba(0,0,0,.08); */
}

/* ── Card base ── */
.sys-card {
    border: 1px solid #e8ecf0;
    border-radius: .5rem;
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.sys-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,.10);
    text-decoration: none;
    color: inherit;
}


/* ── Card body ── */
.sys-card-body {
    padding: 1.1rem 1.25rem 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.sys-card-title {
    font-size: .95rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: .35rem;
    line-height: 1.35;
}
.sys-card-desc {
    font-size: .8rem;
    color: #6c757d;
    line-height: 1.5;
    flex: 1;
    margin-bottom: .9rem;
   
}
.sys-card-cta {
    font-size: .8rem;
    font-weight: 600;
    color: red;
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    transition: gap .18s ease, color .18s ease;
}
.sys-card:hover .sys-card-cta {
    gap: .52rem;
    color: red;
    font-weight: 650;
}

/* ── Staggered fade-up animation ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0);    }
}
.sys-card-wrap {
    opacity: 0;
    animation: fadeUp .45s ease forwards;
}

/* ── Empty state ── */
.sys-empty {
    padding: 3rem 1rem;
    text-align: center;
    color: #adb5bd;
}
.sys-empty i { font-size: 2.5rem; display: block; margin-bottom: .6rem; }

.office-header-image {
    margin-bottom: 1rem;
}

.office-header-image img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e8ecf0;
    border-radius: .5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}
