/* Doc Download Widget */
.elementor-widget-doc-download,
.elementor-widget-doc-download .elementor-widget-container {
    width: 100%;
}

.doc-download-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.doc-card {
    width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

a.doc-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.doc-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background-color: #1a1a2e;
    flex-shrink: 0;
}

.doc-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    word-break: break-word;
}

/* Responsive */
@media (max-width: 576px) {
    .doc-download-grid {
        gap: 12px;
    }
}
