/* Compass component — isolated selectors. */

/* ── Side Stack: 3 cards ── */
.compass-side-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    max-height: 480px;
    overflow: hidden;
}
.compass-side-card-wrap {
    position: relative;
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
}
.compass-side-card-wrap .compass-side-card {
    height: 100%;
}
.compass-side-card {
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(15,23,42,.07);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .25s ease;
    height: 100%;
    min-height: 0;
    border: none;
    box-sizing: border-box;
}
.compass-side-card:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 24px rgba(15,23,42,.1);
}
.compass-side-img {
    aspect-ratio: 1 / 1;
    height: 100%;
    width: auto;
    min-width: 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: var(--z-card-radius, 18px);
}
.compass-side-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
    border-radius: inherit;
}
.compass-side-card:hover .compass-side-img img { transform: scale(1.06); }
.compass-side-badge {
    position: absolute;
    top: 8px; left: 8px;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 36px);
    min-height: 22px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    letter-spacing: .03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
    box-shadow: 0 1px 6px rgba(0,0,0,.12);
    box-sizing: border-box;
}
.compass-side-text {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.compass-side-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 6px;
}
.compass-side-excerpt {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 0 1 auto;
    margin: 0;
}
.compass-side-date {
    font-size: 0.66rem;
    color: #cbd5e1;
    margin-top: 8px;
    flex-shrink: 0;
}
