/* Media: usr 공통 기능 스타일 */

.food-icon {
    position: absolute;
    font-size: 26px;
    animation: floatFood--loading 2s ease-in-out infinite;
}

.food-icon.food-1 {
    left: 15px;
    top: 45px;
    animation-delay: 0s;
}

.food-icon.food-2 {
    right: 15px;
    top: 35px;
    animation-delay: 0.25s;
}

.food-icon.food-3 {
    left: 25px;
    bottom: 25px;
    animation-delay: 0.5s;
}

.food-icon.food-4 {
    right: 20px;
    bottom: 35px;
    animation-delay: 0.75s;
}

.ingredient-analysis .preview-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.ingredient-analysis .ingredient-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 16px;

    border-radius: 50%;

    background: #f3fff2;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
}

.ingredient-analysis .example-box img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.recommendation-results .recipe-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-width: 78px;
    height: 78px;

    padding: 10px;

    border-radius: 22px;

    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border: 1px solid #fed7aa;

    box-shadow:
        0 6px 18px rgba(255, 140, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    transition: all 0.2s ease;
}

.recommendation-results .recipe-thumb:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(255, 140, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.recommendation-results .recipe-thumb-icon {
    font-size: 30px;
    line-height: 1;

    margin-bottom: 6px;
}

.recommendation-results .recipe-thumb-name {
    font-size: 13px;
    font-weight: 700;

    color: #9a3412;

    letter-spacing: -0.2px;
}

.recipe-detail .hero-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.recipe-detail .hero-info span {
    background: #f5f7f2;
    border-radius: 14px;
    padding: 11px 8px;
    font-size: 13px;
    text-align: center;
}

.dashboard .recipe-emoji {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 23px;
}

.article-detail .notice-view-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.recipe-catalog .recipe-emoji {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, #fff4d8, #e8f8df);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.auth-shell .kakao-icon {
    font-size: 20px;
}

.auth-shell .floating-foods {
    position: fixed;
    inset: 0;
    z-index: 1;

    overflow: hidden;
    pointer-events: none;
}

.auth-shell .floating-foods span {
    position: absolute;
    bottom: -80px;

    font-size: 34px;
    opacity: 0;

    filter: blur(0.2px);

    animation: floatFood--signin linear infinite;
}

.auth-shell .floating-foods span:nth-child(1) {
    left: 8%;
    font-size: 30px;
    animation-duration: 15s;
    animation-delay: 0s;
}

.auth-shell .floating-foods span:nth-child(2) {
    left: 22%;
    font-size: 42px;
    animation-duration: 19s;
    animation-delay: 2s;
}

.auth-shell .floating-foods span:nth-child(3) {
    left: 38%;
    font-size: 32px;
    animation-duration: 17s;
    animation-delay: 1s;
}

.auth-shell .floating-foods span:nth-child(4) {
    left: 54%;
    font-size: 46px;
    animation-duration: 14s;
    animation-delay: 3s;
}

.auth-shell .floating-foods span:nth-child(5) {
    left: 70%;
    font-size: 38px;
    animation-duration: 21s;
    animation-delay: 0.5s;
}

.auth-shell .floating-foods span:nth-child(6) {
    left: 84%;
    font-size: 31px;
    animation-duration: 18s;
    animation-delay: 4s;
}

.auth-shell .floating-foods span:nth-child(7) {
    left: 48%;
    font-size: 28px;
    animation-duration: 20s;
    animation-delay: 6s;
}

.auth-shell .floating-foods span:nth-child(8) {
    left: 14%;
    font-size: 36px;
    animation-duration: 22s;
    animation-delay: 5s;
}

.selectable-recipe-list .recipe-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 20px;

    background: #fff3df;

    font-size: 28px;
}