.seo-api-block {
    box-sizing: border-box;
    margin-bottom: 16px;
    padding: 9px;
    border: 1px solid #fff;
    border-radius: 12px;
}

.seo-api-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(116, 111, 140, .15);
    box-shadow: 0 9px 20px #00000005, 0 36px 36px #00000005, 0 82px 49px #00000003;
}

.seo-api-card {
    display: flex;
    min-width: 0;
    min-height: 330px;
    flex-direction: column;
    padding: 32px 24px;
    background: #fff;
}

.seo-api-audience {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 12px;
    color: #5e5b6b;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

.seo-api-icon {
    display: inline-flex;
    width: 48px;
    min-width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f4f3f8;
}

.seo-api-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #5e5b6b;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.seo-api-card h2 {
    margin: 24px 0 12px;
    color: #131218;
    font-size: 23px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -.02em;
}

.seo-api-card p {
    color: #5e5b6b;
    line-height: 24px;
}

.seo-api-card p a {
    line-height: inherit;
}

.seo-api-cta {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 24px;
    font-weight: 600;
    line-height: 20px;
}

@media screen and (max-width: 928px) {
    .seo-api-block {
        margin-right: 16px;
        margin-left: 16px;
    }
}

@media screen and (max-width: 767px) {
    .seo-api-grid {
        grid-template-columns: 1fr;
    }

    .seo-api-card {
        min-height: 0;
        padding: 24px 20px;
    }

    .seo-api-card h2 {
        margin-top: 20px;
        font-size: 21px;
        line-height: 26px;
    }

    .seo-api-cta {
        margin-top: 24px;
        padding-top: 0;
    }
}
