/* ===== RECIPE ITEM ===== */
.recipe__item {
    border-bottom: 1px dotted #A0A0A0;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.recipe__name {
    font-size: 18px;
    margin-bottom: 4px;
}

.recipe__auth {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.recipe__image-link {
    display: inline-block;
    margin: 8px 0;
}

.recipe__img {
    max-width: 200px;
    max-height: 200px;
    transition: box-shadow 0.3s ease;
    display: block;
}

.recipe__img:hover {
    box-shadow: 0 0 20px 2px silver;
}

.recipe__text {
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0;
}

/* ===== ACTIONS ===== */
.recipe__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    min-height: 32px;
    margin: 16px 0 14px 0;
}

.recipe__action {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding-left: 40px;
    font-size: 16px;
}

.recipe__action--pdf {
    background: url(/img/pdf.png) no-repeat left center;
    background-size: 32px 32px;
}

.recipe__action--download {
    background: url(/img/ball.png) no-repeat left center;
    background-size: 32px 32px;
    padding-left: 30px;
}

.recipe__action-link {
    color: #4B76AB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.recipe__action-link:hover {
    color: #FF0000;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .recipe__img {
        max-width: 100%;
        max-height: 100%;
    }
}