/* Visa Documents Required Widget — Frontend Styles */

.vdw-list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 16px;
    column-gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.vdw-list.vdw-connector {
    border-left: 2px dotted #c9a96e;
    padding-left: 0;
}

.vdw-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: #ffffff;
    padding: 18px 24px;
    border-radius: 40px;
    box-sizing: border-box;
    width: 100%;
}

.vdw-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #3f6b34;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vdw-icon img {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: contain;
    display: block;
    /* Make icons appear white if they are simple line icons with transparent bg */
    filter: brightness(0) invert(1);
}

.vdw-text {
    flex: 1;
    min-width: 0;
}

.vdw-title {
    font-size: 17px;
    font-weight: 600;
    color: #1f2d22;
    margin: 0 0 4px;
    line-height: 1.3;
    word-wrap: break-word;
}

.vdw-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #7a8580;
    margin: 0;
    word-wrap: break-word;
}

/* Responsive defaults (overridden by Elementor inline styles when set) */
@media (max-width: 1024px) {
    .vdw-item {
        padding: 14px 16px;
    }
    .vdw-icon {
        width: 42px;
        height: 42px;
    }
    .vdw-title {
        font-size: 16px;
    }
    .vdw-desc {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .vdw-list {
        grid-template-columns: 1fr !important;
    }
    .vdw-item {
        padding: 12px 14px;
        border-radius: 24px;
    }
    .vdw-icon {
        width: 38px;
        height: 38px;
    }
    .vdw-title {
        font-size: 15px;
    }
    .vdw-desc {
        font-size: 13px;
    }
}
