.njjc-section {
width: 100%;
padding: 28px 0 32px;
background: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.njjc-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
} .njjc-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
@media (max-width: 900px) {
.njjc-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 560px) {
.njjc-grid {
grid-template-columns: 1fr;
gap: 12px;
}
} .njjc-card {
display: flex;
align-items: center;
justify-content: space-between;
background: #f8fafc;
border: 1.5px solid #e2e8f0;
border-radius: 10px;
padding: 18px 16px 18px 22px;
text-decoration: none !important;
color: inherit !important;
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
position: relative;
overflow: hidden;
cursor: pointer;
} .njjc-card::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 4px;
background: var(--njjc-color, #2563eb);
border-radius: 10px 0 0 10px;
opacity: 0;
transition: opacity 0.18s ease;
}
.njjc-card:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
border-color: var(--njjc-color, #2563eb);
background: #ffffff;
text-decoration: none !important;
color: inherit !important;
}
.njjc-card:hover::before {
opacity: 1;
} .njjc-card-info {
display: flex;
flex-direction: column;
gap: 5px;
}
.njjc-card-title {
font-size: 14.5px;
font-weight: 700;
color: #1e293b;
line-height: 1.3;
}
.njjc-card-meta {
font-size: 12.5px;
font-weight: 600;
color: var(--njjc-color, #2563eb);
opacity: 0;
transform: translateX(-4px);
transition: opacity 0.18s ease, transform 0.18s ease;
}
.njjc-card:hover .njjc-card-meta {
opacity: 1;
transform: translateX(0);
} .njjc-card-icon {
flex-shrink: 0;
width: 72px;
height: 72px;
display: flex;
align-items: center;
justify-content: center;
}
.njjc-card-icon svg {
width: 72px;
height: 72px;
transition: transform 0.22s ease;
}
.njjc-card:hover .njjc-card-icon svg {
transform: scale(1.08);
}