.recipe-detail {
    max-width: 768px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.recipe-detail__header {
    margin-bottom: 2rem;
    text-align: center;
}

.recipe-detail__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--main-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.recipe-detail__meta {
    display: flex;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.recipe-detail__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recipe-detail__featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.recipe-detail__content {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.recipe-detail__content h1,
.recipe-detail__content h2,
.recipe-detail__content h3 {
    color: var(--main-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.recipe-detail__content ul,
.recipe-detail__content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.recipe-detail__content li {
    margin-bottom: 0.5rem;
}

.recipe-detail__content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.recipe-detail__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .recipe-detail__title {
        font-size: 2rem;
    }
    
    .recipe-detail__content {
        padding: 1.5rem;
    }
    
    .recipe-detail__actions {
        flex-direction: column;
    }
    
    .recipe-detail__actions .btn {
        width: 100%;
        text-align: center;
    }
}