.downloads-block {
    padding: 40px 0;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.download-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.download-image {
    width: 100%;
    aspect-ratio: 3 / 4; /* Portrait ratio (adjust to 2/3 or 9/16 if needed) */
    overflow: hidden;
    background: #f9fafb;
    position: relative;
}

.download-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.download-content {
    padding: 20px;
}

.download-name {
    margin: 0 0 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    line-height: 1.4;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #cf2d2e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
	border: 2px solid #cf2d2e;
    transition: background 0.2s ease;
}

.download-button:hover {
    border: 2px solid #000000;
}

.download-button svg {
    width: 16px;
    height: 16px;
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}