.app-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    padding: 20px 50px;
    gap: 20px;
    box-shadow: var(--box-shadow-default);
    border-radius: 16px;
}

.app-card-image {
    width: 100%;
    height: 234px;
    object-fit: cover;
    border-radius: 20px;
}

.app-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.app-card-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
}

.app-card-avatar {
    min-width: 64px;
    min-height: 64px;
    max-width: 64px;
    max-height: 64px;
    border-radius: 10px;
    overflow: hidden;
}

.app-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-card-title {
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    gap: 5px;
}

.app-card-title-text {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: var(--text-normal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    display: inline-block;
}

.app-card-price-text {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-secondary);
}

.app-card-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: end;
}

.app-card-action-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px 8px;
    width: max-content;
    height: 30px;
    gap: 8px;
    background: var(--bg-primary);
    border-radius: 8px;
    font-family: 'esamanru';
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    border: none;
    color: var(--text-white);
}

@media screen and (min-width: 768px) {
    .app-card-actions {
        padding-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .app-card {
        padding: 20px 10px;
    }
    
    .app-card-title {
        width: 100%;
    }

    .app-card-content {
        flex-direction: column;
        align-items: center;
    }
    .app-card-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}
