#ct-dashboard {
	
	.ct-dashboard-home-downloads {

		ul {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			grid-column-gap: 30px;
			margin: 0;

			li {
				display: flex;
				flex-direction: column;
				align-items: flex-start;
				text-decoration: none;
				padding: 35px;
				margin-bottom: 0;
				background: #fff;
				border-radius: 3px;
				border: 1px dashed rgba(226, 230, 235, 0.7);
				// box-shadow: 0 20px 30px rgba(143, 163, 184, 0.15);
			}

			h4 {
				display: flex;
				align-items: center;
				gap: 10px;
			}

			p {
				color: #687c93;
				// text-align: center;
				margin-bottom: 25px;
			}
		}
	}
}