{
	"$schema": "https://schemas.wp.org/trunk/block.json",
	"apiVersion": 3,
	"name": "docsy/support-hours-block",
	"version": "0.1.0",
	"title": "Support Hours Block",
	"category": "theme",
	"icon": "businessman",
	"description": "Example block scaffolded with Create Block tool.",
	"example": {},
	"textdomain": "docsy",
	"editorScript": "file:./index.js",
	"editorStyle": "file:./index.css",
	"style": "file:./style.css",
	"render": "file:./render.php",
	"viewScript": "file:./view.js",
	"attributes": {
		"title": {
			"type": "string",
			"default": "Support Hours"
		},
		"subtitle": {
			"type": "string",
			"default": "Our support team is available during these hours"
		},
		"cards": {
			"type": "array",
			"default": [
				{
					"title": "Business Hours",
					"rows": [
						{
							"label": "Monday - Friday",
							"hours": "9:00 AM - 6:00 PM EST"
						},
						{
							"label": "Saturday",
							"hours": "10:00 AM - 4:00 PM EST"
						},
						{
							"label": "Sunday",
							"hours": "Closed"
						}
					]
				},
				{
					"title": "Emergency Support",
					"rows": [
						{
							"label": "Critical Issues",
							"hours": "24/7"
						},
						{
							"label": "Security Issues",
							"hours": "24/7"
						},
						{
							"label": "System Outages",
							"hours": "24/7"
						}
					]
				}
			]
		},
		"backgroundColor": {
			"type": "string",
			"default": "#2563eb"
		},
		"textColor": {
			"type": "string",
			"default": "#dbeafe"
		},
		"titleColor": {
			"type": "string",
			"default": "#ffffff"
		},
		"cardHeadingColor": {
			"type": "string",
			"default": "#ffffff"
		},
		"subtitleColor": {
			"type": "string",
			"default": "#bfdbfe"
		},
		"padding": {
			"type": "string",
			"default": "4rem 0 5rem 0"
		},
		"borderRadius": {
			"type": "string",
			"default": "1rem"
		},
		"boxShadow": {
			"type": "string",
			"default": "0 10px 15px -3px rgba(0, 0, 0, 0.1)"
		},
		"textAlign": {
			"type": "string",
			"default": "center"
		},
		"headerTextAlign": {
			"type": "string",
			"default": "center"
		},
		"cardGap": {
			"type": "string",
			"default": "2rem"
		},
		"gridColumns": {
			"type": "number",
			"default": 2
		},
		"titleFontSize": {
			"type": "number",
			"default": 30
		},
		"subtitleFontSize": {
			"type": "number",
			"default": 20
		},
		"cardHeadingFontSize": {
			"type": "number",
			"default": 20
		},
		"contentTextFontSize": {
			"type": "number",
			"default": 16
		},
		"titleFontWeight": {
			"type": "string",
			"default": "700"
		},
		"cardHeadingFontWeight": {
			"type": "string",
			"default": "600"
		},
		"containerMaxWidth": {
			"type": "string",
			"default": "896"
		},
		"containerPaddingTop": {
			"type": "string",
			"default": "0"
		},
		"containerPaddingBottom": {
			"type": "string",
			"default": "0"
		},
		"containerPaddingLeft": {
			"type": "string",
			"default": "32"
		},
		"containerPaddingRight": {
			"type": "string",
			"default": "32"
		},
		"sectionMarginTop": {
			"type": "string",
			"default": "0"
		},
		"sectionMaxWidth": {
			"type": "string",
			"default": "1920"
		}
	},
	"supports": {
		"html": false,
		"align": [
			"wide",
			"full"
		]
	}
}