.highlight-red {
color: #FF1E1E !important;
}
.ntw-dictionary-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
width: 100%;
max-width: 1200px;
margin: 30px auto;
box-sizing: border-box;
}
.dict-column-title {
font-family: 'Archivo Black', system-ui, sans-serif;
font-size: 1.4rem;
color: #ffffff;
text-transform: uppercase;
border-bottom: 2px solid #222222;
padding-bottom: 10px;
margin-bottom: 25px;
}
.dict-grid {
display: flex;
flex-direction: column;
gap: 16px;
}
.dict-card {
display: flex;
align-items: center;
background-color: #0a0a0a;
border: 1px solid #1a1a1a;
border-radius: 6px;
overflow: hidden;
text-decoration: none !important;
transition: all 0.3s ease;
}
.dict-card:hover {
transform: translateX(4px);
border-color: #FF1E1E;
box-shadow: 0 4px 15px rgba(255, 30, 30, 0.2);
}
.dict-thumb {
width: 100px;
height: 65px;
flex-shrink: 0;
background: #000;
overflow: hidden;
}
.dict-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.dict-card:hover .dict-thumb img {
transform: scale(1.08);
}
.dict-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: #111;
color: #FF1E1E;
font-weight: 900;
}
.dict-info {
padding: 0 15px;
}
.dict-info h4 {
font-family: 'Archivo Black', sans-serif;
font-size: 0.95rem;
color: #ffffff;
margin: 0;
line-height: 1.3;
text-transform: uppercase;
transition: color 0.3s ease;
}
.dict-card:hover .dict-info h4 {
color: #FF1E1E;
}
@media (max-width: 800px) {
.ntw-dictionary-container {
grid-template-columns: 1fr;
}
}