```
---
## Webflow Embed Element Styles
For a **half-page rectangle map** in your content, set these styles on the embed element:
| Property | Value | Notes |
|----------|-------|-------|
| **Width** | `100%` | Full width of container |
| **Height** | `400px` or `450px` | Fixed height works best |
| **Min Height** | `300px` | Prevents collapse |
| **Border Radius** | `16px` | Rounded corners |
| **Overflow** | `Hidden` | Clips to border radius |
| **Margin Top** | `20px` | Space above |
| **Margin Bottom** | `20px` | Space below |
---
## Visual Layout Options
**Option A: Full-width in content**
```
Width: 100%
Height: 400px
```
**Option B: Half-width, floated right**
```
Width: 50%
Float: Right
Margin Left: 20px
Margin Bottom: 20px
Height: 350px
```
**Option C: Centered card**
```
Width: 80%
Margin: 0 auto
Height: 450px
Border Radius: 16px
Box Shadow: 0 4px 24px rgba(0,0,0,0.1)