.scs-td {
--scs-td-accent: #3d5a2b;
--scs-td-heading: #1a3a5c;
--scs-td-muted: #5a6b7b;
--scs-td-border: #e3e8ee;
position: relative;
}
.scs-td--loading {
opacity: 0.6;
pointer-events: none;
transition: opacity 0.15s ease;
} .scs-td-filter {
margin-bottom: 2.5rem;
max-width: 420px;
}
.scs-td-filter__label {
display: block;
margin-bottom: 0.5rem;
color: var(--scs-td-muted);
font-weight: 500;
}
.scs-td-select-wrap {
position: relative;
}
.scs-td-select {
width: 100%;
appearance: none;
-webkit-appearance: none;
padding: 0.85rem 2.5rem 0.85rem 1rem;
border: 1px solid var(--scs-td-border);
border-radius: 6px;
background-color: #fff;
font-size: 1rem;
color: var(--scs-td-heading);
cursor: pointer;
}
.scs-td-select-wrap::after {
content: "";
position: absolute;
top: 50%;
right: 1rem;
width: 0.55rem;
height: 0.55rem;
border-right: 2px solid var(--scs-td-muted);
border-bottom: 2px solid var(--scs-td-muted);
transform: translateY(-70%) rotate(45deg);
pointer-events: none;
} .scs-td-group {
margin-bottom: 3rem;
}
.scs-td-group__head {
display: flex;
align-items: baseline;
justify-content: space-between;
gap: 1rem;
flex-wrap: wrap;
margin-bottom: 1.5rem;
border-bottom: 1px solid var(--scs-td-border);
padding-bottom: 0.75rem;
}
.scs-td-group__title {
margin: 0;
color: var(--scs-td-heading);
font-size: 1.25rem;
font-weight: 600;
}
.scs-td-counter {
color: var(--scs-td-muted);
font-size: 0.9rem;
} .scs-td-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.scs-td-card {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.25rem;
background: #fff;
border: 1px solid var(--scs-td-border);
border-radius: 8px;
}
.scs-td-card__media {
flex: 0 0 auto;
width: 72px;
height: 72px;
border-radius: 6px;
overflow: hidden;
background: #eef1f5;
display: flex;
align-items: center;
justify-content: center;
color: #b6c0cc;
}
.scs-td-card__photo {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.scs-td-card__body {
flex: 1 1 auto;
min-width: 0;
}
.scs-td-card__name {
margin: 0 0 0.35rem;
color: var(--scs-td-heading);
font-size: 1.05rem;
font-weight: 600;
line-height: 1.25;
}
.scs-td-card__position {
margin: 0 0 0.85rem;
color: var(--scs-td-muted);
font-size: 0.9rem;
}
.scs-td-card__btn,
.scs-td-loadmore {
display: inline-block;
box-sizing: border-box;
cursor: pointer;
font: inherit;
text-decoration: none;
border: 1px solid var(--scs-td-accent);
background: transparent;
color: var(--scs-td-accent);
padding: 0.5rem 1rem;
border-radius: 6px;
transition: background-color 0.15s ease, color 0.15s ease;
}
.scs-td-card__btn {
width: 100%;
text-align: center;
}
.scs-td-card__btn:hover,
.scs-td-loadmore:hover {
background: var(--scs-td-accent);
color: #fff;
} .scs-td-loadmore-wrap {
display: flex;
justify-content: center;
margin-top: 1.5rem;
}
.scs-td-loadmore {
padding: 0.7rem 2rem;
}
.scs-td-loadmore[disabled] {
opacity: 0.6;
cursor: default;
}
.scs-td-empty {
grid-column: 1 / -1;
color: var(--scs-td-muted);
padding: 1rem 0;
} .scs-td-modal {
position: fixed;
inset: 0;
z-index: 99999;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
}
.scs-td-modal[hidden] {
display: none;
}
.scs-td-modal__overlay {
position: absolute;
inset: 0;
background: rgba(15, 27, 40, 0.55);
}
.scs-td-modal__panel {
position: relative;
background: #fff;
max-width: 640px;
width: 100%;
max-height: 85vh;
overflow-y: auto;
border-radius: 10px;
padding: 2rem 2rem 2.25rem;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.scs-td-modal__close {
position: absolute;
top: 0.75rem;
right: 1rem;
border: 0;
background: none;
font-size: 1.75rem;
line-height: 1;
color: var(--scs-td-muted);
cursor: pointer;
}
.scs-td-bio__name {
margin: 0 0 0.25rem;
color: var(--scs-td-heading);
}
.scs-td-bio__position {
margin: 0 0 1rem;
color: var(--scs-td-muted);
font-weight: 500;
}
body.scs-td-modal-open {
overflow: hidden;
} .scs-td-single-meta {
font-size: 1.05rem;
font-weight: 600;
color: var(--scs-td-accent, #3d5a2b);
margin: 0 0 1.25rem;
} @media (max-width: 1024px) {
.scs-td-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.scs-td-grid {
grid-template-columns: 1fr;
}
}