
.smp-products .smp-death-details__row-1 {
    grid-area: 2 / 1 / 3 / 3;
}

.smp-death-details {
    background: var(--smp-primary-color-90);
    margin: 0 -16px;
    width: calc(100% + 32px);
    padding: 16px;
}

.smp-death-details__container {
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.smp-death-details .smp-death-details__icon {
    color: var(--smp-icon-contrained-color, var(--smp-primary-color));
    font-size: 32px;
    font-family: 'Material Icons Round';
}

.smp-death-details__title {
    font-weight: 600;
}

.smp-death-details__text::first-letter {
    text-transform: uppercase;
}

.smp-death-details__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 16px;
    color: var(--smp-grey-900);
    line-height: 150%;
}
.smp-death-details__content > p {
    margin: 0;
}

@media only screen and (min-width: 640px) {
    .smp-products .smp-death-details__row-1 {
        grid-area: 2 / 1 / 3 / 4;
    }
}


@media only screen and (min-width: 952px) {
    .smp-products .smp-death-details__row-1 {
        grid-area: 2 / 1 / 3 / 5;
    }
    .smp-death-details {
        max-width: 900px;
        margin: 0 auto;
        width: 100%;
        border-radius: var(--smp-card-radius);
    }
}

