.co-cbf3f994-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .co-cbf3f994-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .co-cbf3f994-grid {
        grid-template-columns: 1fr;
    }
}

.co-cbf3f994-grid .column-item {
    display: flex;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* border-radius handled dynamically by Elementor options */
}

.co-cbf3f994-grid .column-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: transform 0.3s ease;
}

.co-cbf3f994-grid .column-item:hover .column-inner {
    transform: scale(1.05);
}

.co-cbf3f994-grid .column-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: background-color 0.3s ease;
}

.co-cbf3f994-grid .column-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.co-cbf3f994-grid .column-content h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
}

.co-cbf3f994-grid .column-content p {
    margin: 0;
    font-size: 16px;
}