.recipe-quote {
    padding-bottom: 30px;
    max-width: 320px;
    margin: 0 30px 0 20px;
    padding-top: 20px;
    font-style: italic;

    border: 2px dashed var(--text-dark);
    border-radius: 8px;
    color: #fff;
    background-color: var(--accent);
    font-weight: 600;
    font-family: var(--font-main);

    justify-self: end;   /* вправо */
    align-self: end; 
}

.quote-image {
    display: grid;
    place-items: center;
}

.quote-image img {
    max-width: 60%;
    height: auto;
}

.quote_text {
    text-align: left;
    border-radius: var(--border-radius);
}

.quote_author {
    text-align: right;
    font-size: 10px;
    padding-top: 20px;
}

/* Медиа-запрос исключительно для центрирования на мобильных */
@media (max-width: 768px) {
    .recipe-quote {
        justify-self: center;   /* ставит весь блок по центру в гриде */
        align-self: center;
        margin: 20px auto;      /* выравнивает маржины по центру */
    }
}
