/* General grid styling */
.wp-block-columns {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid columns */
grid-gap: 20px; /* Space between grid items */
}

.wp-block-column {
border: 1px solid #eee; /* Example border, adjust as needed */
padding: 15px; /* Padding inside grid items */
}
.wp-block-column img {
width: 100%;
height: auto;
display: block;
}

/* Sidebar Styling */
.sidebar {
width: 250px;
float: left; /* Adjust as needed */
padding-right: 20px;
}
.sidebar ul {
list-style: none;
padding-left: 0px;
}
.sidebar ul li {
border-bottom: 1px solid #eee;
margin-bottom: 5px;
}
.sidebar ul li a {
display: block;
padding: 10px;
}

/* Call to Action Button */
.wp-block-button {
text-align: center;
}
.wp-block-button__link {
background-color: #007bff; /* Example background color */
color: #fff; /* Example text color */
padding: 10px 20px;
text-decoration: none; /* Remove underline */
border-radius: 5px; /* Rounded corners */
display: inline-block;
}
.wp-block-button__link:hover {
background-color: #0056b3; /* Example hover color */
}

/* Adjust other elements as needed */

Scroll to Top