.aspect-ratio-selection h2 { font-size: 1.25rem; font-weight: 600; color: #1f2937; margin-bottom: 0.5rem; } .section-description { color: #6b7280; margin-bottom: 1.5rem; font-size: 0.875rem; } .aspect-ratio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin-bottom: 2rem; } .aspect-ratio-card { border: 2px solid #e5e7eb; border-radius: 0.75rem; padding: 1rem; cursor: pointer; transition: all 0.2s ease; background: #ffffff; } .aspect-ratio-card:hover { border-color: #3b82f6; box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15); } .aspect-ratio-card.selected { border-color: #3b82f6; background: #eff6ff; box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15); } .aspect-ratio-preview { display: flex; justify-content: center; align-items: center; height: 60px; margin-bottom: 1rem; background: #f9fafb; border-radius: 0.5rem; } .preview-box { background: #3b82f6; border-radius: 2px; } .preview-box.aspect-16-9 { width: 48px; height: 27px; } .preview-box.aspect-4-3 { width: 40px; height: 30px; } .preview-box.aspect-1-1 { width: 32px; height: 32px; } .aspect-ratio-info h3 { font-size: 1rem; font-weight: 600; color: #1f2937; margin-bottom: 0.25rem; } .ratio-description { color: #6b7280; font-size: 0.75rem; margin-bottom: 0.5rem; } .ratio-dimensions { font-size: 0.75rem; color: #9ca3af; font-weight: 500; }