.ps-663d9d8a-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ps-663d9d8a-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ps-663d9d8a-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ps-663d9d8a-link-overlay {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.ps-663d9d8a-link-overlay:hover,
.ps-663d9d8a-link-overlay:focus {
    text-decoration: none;
    color: inherit;
}

.ps-663d9d8a-icon {
    font-size: 40px;
    color: #0073aa;
    margin-bottom: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.ps-663d9d8a-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.ps-663d9d8a-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
}

.ps-663d9d8a-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
}

/* Default Responsive Behavior */
@media (max-width: 1024px) {
    .ps-663d9d8a-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .ps-663d9d8a-grid {
        grid-template-columns: 1fr !important;
    }
}