.nxp-fab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.nxp-fab-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.nxp-fab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #1e73be;
}
.nxp-fab-img-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
}
.nxp-fab-img-wrapper img {
    max-height: 100%;
    max-width: 80%;
    object-fit: contain;
}
.nxp-fab-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.nxp-fab-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}
.nxp-fab-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nxp-fab-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1e73be;
}
.nxp-fab-footer svg {
    margin-left: 5px;
    width: 16px; height: 16px;
    transition: transform 0.3s ease;
}
.nxp-fab-card:hover .nxp-fab-footer svg {
    transform: translateX(5px);
}