.four-cards-grid-636ac681 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.four-cards-item-636ac681 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.four-cards-item-636ac681:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}
.four-cards-image-636ac681 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.four-cards-content-636ac681 {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.four-cards-title-636ac681 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25rem;
}
.four-cards-desc-636ac681 {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}
.four-cards-button-636ac681 {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    align-self: flex-start;
}
.four-cards-button-636ac681:hover {
    opacity: 0.9;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .four-cards-grid-636ac681 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .four-cards-grid-636ac681 {
        grid-template-columns: 1fr;
    }
}