/**
 * Press to Post — Frontend Styles (attachment blocks)
 */

.ptp-attachments {
    margin: 24px 0;
    padding: 16px 20px;
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
}

.ptp-attachments h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #333;
}

.ptp-attachment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ptp-attachment-list li {
    margin-bottom: 6px;
}

.ptp-attachment-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.ptp-attachment-list a:hover {
    border-color: #0073aa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ptp-attachment__icon {
    font-size: 18px;
}

.ptp-attachment__name {
    font-weight: 500;
}

.ptp-attachment__size {
    color: #888;
    font-size: 12px;
}
