{
  "type": "Card",
  "onClick": {
    "type": "OpenUrlNewTab",
    "url": "{url}"
  },
  "style": {
    "width": "100%",
    "background": "none",
    "padding": "0px",
    "height": "@eval(window.innerWidth > 540 ? \"72px\" : \"unset\")",
    "justifyContent": "center"
  },
  "body": [
    {
      "type": "ColumnSet",
      "columns": [
        {
          "type": "Column",
          "items": [
            {
              "type": "ColumnSet",
              "style": {
                "alignItems": "center"
              },
              "columns": [
                {
                  "type": "Column",
                  "style": {
                    "minWidth": "@eval(window.innerWidth > 540 ? \"64px\" : \"48px\")",
                    "height": "@eval(window.innerWidth > 540 ? \"64px\" : \"48px\")",
                    "display": "flex",
                    "justifyContent": "center",
                    "alignItems": "center",
                    "borderRadius": "8px",
                    "background": "white"
                  },
                  "items": [
                    {
                      "type": "Icon",
                      "fileExtension": "@eval(({url}.includes('.pdf') && 'pdf') || ({url}.includes('.docx') && 'docx') || ({url}.includes('.doc') && 'doc') || ({url}.includes('.xlsx') && 'xlsx') || ({url}.includes('.xls') && 'xls') || ({url}.includes('.ppt') && 'ppt') || ({url}.includes('.pptx') && 'pptx') || ({url}.includes('.csv') && 'csv'))",
                      "name": "@eval(({url}.includes('.pdf') || {url}.includes('.docx') || {url}.includes('.doc') || {url}.includes('.xlsx') || {url}.includes('.xls') || {url}.includes('.ppt') || {url}.includes('.pptx')) ? null : ({url}.includes('.aspx') ? 'News' : 'Megaphone'))",
                      "size": "@eval(window.innerWidth > 540 ? \"40\" : \"32\")",
                      "style": {
                        "color": "@eval(window?.__themeState__?.theme?.themePrimary)",
                        "fontSize": "30px",
                        "justifyContent": "center"
                      }
                    }
                  ]
                },
                {
                  "type": "Column",
                  "style": {
                    "marginLeft": "6px",
                    "flex": 1,
                    "justifyContent": "center"
                  },
                  "items": [
                    {
                      "type": "TextBlock",
                      "horizontalSeparator": false,
                      "text": "{title}",
                      "wrap": true,
                      "maxLines": 2,
                      "style": {
                        "fontSize": "@eval(window.innerWidth > 540 ? \"18px\" : \"14px\")",
                        "lineHeight": "@eval(window.innerWidth > 540 ? \"24px\" : \"17px\")",
                        "fontWeight": 600
                      }
                    },
                    {
                      "type": "TextBlock",
                      "horizontalSeparator": false,
                      "text": "{description}",
                      "title": "{description}",
                      "wrap": true,
                      "maxLines": 1,
                      "style": {
                        "display": "@eval(window.innerWidth < 540 ? \"none\" : \"-webkit-box\")",
                        "lineHeight": "24px"
                      },
                      "visible": "{description}"
                    }
                  ]
                }
              ]
            }
          ]
        }
      ]
    }
  ]
}