.ntw-dl-section {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 20px 0;
box-sizing: border-box;
}
.downloads-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
gap: 30px;
}
.download-card {
display: flex;
flex-direction: column;
background: #0a0a0a;
border: 1px solid #1a1a1a;
border-radius: 8px;
overflow: hidden;
text-decoration: none !important;
transition: all 0.3s ease;
}
.download-card:hover {
transform: translateY(-5px);
border-color: #FF1E1E;
box-shadow: 0 10px 25px rgba(255, 30, 30, 0.15);
}
.download-thumb {
position: relative;
width: 100%;
aspect-ratio: 16 / 9;
background: #000;
overflow: hidden;
}
.download-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}
.download-card:hover .download-thumb img {
transform: scale(1.05);
}
.dl-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: #111;
color: #FF1E1E;
font-weight: 900;
font-size: 1.2rem;
}
.badge-download {
position: absolute;
top: 12px;
right: 12px;
background: #FF1E1E;
color: #ffffff;
font-size: 0.68rem;
font-weight: 900;
padding: 4px 10px;
border-radius: 3px;
letter-spacing: 1px;
}
.download-body {
padding: 22px;
display: flex;
flex-direction: column;
flex-grow: 1;
}
.download-body h3 {
font-family: 'Archivo Black', sans-serif;
font-size: 1.2rem;
color: #ffffff;
margin: 0 0 10px 0;
line-height: 1.3;
text-transform: uppercase;
}
.download-card:hover .download-body h3 {
color: #FF1E1E;
}
.download-body p {
color: #888888;
font-size: 0.9rem;
line-height: 1.4;
margin: 0 0 18px 0;
flex-grow: 1;
}
.btn-more {
font-size: 0.8rem;
font-weight: 900;
color: #ffffff;
letter-spacing: 1px;
text-transform: uppercase;
}
.btn-more .arrow {
color: #FF1E1E;
font-style: normal;
} .ntw-pagination {
display: flex;
justify-content: center;
gap: 8px;
margin-top: 40px;
}
.page-link {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 38px;
height: 38px;
background: #0a0a0a;
border: 1px solid #222;
color: #fff;
text-decoration: none !important;
font-weight: 700;
border-radius: 4px;
}
.page-link:hover, .page-link.active {
background: #FF1E1E;
border-color: #FF1E1E;
}