/* Legal & Draft Documents Widget Styles */
.legal-documents-widget, .draft-documents-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 20px 16px 12px 16px;
    margin-bottom: 32px;
}
.ldw-title, .ddw-title {
    font-size: 18px;
    font-weight: 700;
    color: #0065B3;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}
.ldw-divider, .ddw-divider {
    height: 7px;
    width: 100%;
    margin: 0 0 20px 0;
    background: url(/wp-content/uploads/2025/07/line.png) no-repeat center;
    background-size: cover;
    border-radius: 2px;
}
.ldw-list, .ddw-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ldw-item, .ddw-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}
.ldw-item:last-child, .ddw-item:last-child {
    border-bottom: none;
}
.ldw-item-icon, .ddw-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}
.ldw-item-content, .ddw-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ldw-item-title, .ddw-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin: 0;
}
.ldw-item-title a, .ddw-item-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.2s;
}
.ldw-item-title a:hover, .ddw-item-title a:hover {
    color: #0065B3;
}
.ldw-item-red .ldw-item-title a, .ddw-item-red .ddw-item-title a {
    color: #D32F2F;
    font-weight: 700;
}
.ldw-item-desc, .ddw-item-desc {
    font-size: 14px;
    color: #222;
    font-weight: 400;
}
.ldw-item-download, .ddw-item-links {
    margin-top: 2px;
    display: flex;
    gap: 10px;
}
.ldw-download-link, .ddw-download-link {
    color: #1976d2;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.ddw-feedback-link {
    color: #D32F2F;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}
.ddw-item-deadline {
    font-size: 13px;
    color: #1976d2;
    font-weight: 600;
    margin-bottom: 2px;
}
@media (max-width: 600px) {
    .legal-documents-widget, .draft-documents-widget {
        padding: 10px 4px 6px 4px;
    }
    .ldw-item-title, .ddw-item-title {
        font-size: 13px;
    }
    .ldw-item-desc, .ddw-item-desc {
        font-size: 12px;
    }
    .ldw-item-icon, .ddw-item-icon {
        width: 20px;
        height: 20px;
    }
} 