/* Document Link Widget */

.dlw-wrapper {
    width: 100%;
}

.dlw-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background-color: #ffffff;
    border: 1.5px solid #d9d9d9;
    border-radius: 50px;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.dlw-row:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
    text-decoration: none;
}

.dlw-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #5a7a3a;
}

.dlw-icon-wrap i {
    font-size: 20px;
    color: #ffffff;
}

.dlw-icon-wrap svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}

.dlw-svg-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.dlw-divider {
    flex-shrink: 0;
    width: 1.5px;
    height: 32px;
    background-color: #d9d9d9;
}

.dlw-title {
    flex: 1;
    font-size: 16px;
    font-weight: 700;
    color: #2d4a1e;
    line-height: 1.3;
}

.dlw-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #b5651d;
    margin-left: auto;
}

.dlw-link-icon i {
    font-size: 16px;
    color: #ffffff;
}
