.cooking-tip-card {
    background-color: #ac1219;
    border-radius: 25px;
    padding: 15px 20px;
    font-family: 'Libre Baskerville', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    margin: 10px auto;
    text-align: center;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media screen and (max-width: 600px) {
    .cooking-tip-card {
        padding: 10px 15px;
        font-size: 14px;
        border-radius: 15px;
    }
}

.cooking-tip-card:hover {
    background-color: #ac1219;
}