/* YouTube Profile Picture Downloader - image cards. */

.ypd-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.ypd-col { display: flex; flex-direction: column; gap: 14px; }
.ypd-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #eef0f3;
    border-radius: 12px;
    padding: 12px;
    flex: 0 1 200px;
}
.ypd-item-wide { flex: 1 1 100%; }
.ypd-preview { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; background: #eef0f3; align-self: center; }
.ypd-preview-wide { width: 100%; max-width: 640px; border-radius: 8px; background: #eef0f3; }
.ypd-item-title { font-weight: 700; font-size: 0.88rem; color: #1f2937; }
.ypd-item-sub { font-size: 0.78rem; }
.ypd-item-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.ypd-btn { padding: 6px 14px; font-size: 0.82rem; text-decoration: none; }
